This commit is contained in:
Jeffrey C. Ollie 2024-08-23 12:05:20 -05:00
parent 9c364b72f7
commit 7f8875d126
Signed by: jeff
GPG key ID: 6F86035A6D97044E

View file

@ -13,18 +13,22 @@
stdenv.mkDerivation (final: { stdenv.mkDerivation (final: {
pname = "linapple"; pname = "linapple";
version = "2.3.0"; version = "2.3.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "linappleii"; owner = "linappleii";
repo = "linapple"; repo = "linapple";
rev = "eb1f22e6093bc95cc93756fb905180d01c28656b"; rev = "eb1f22e6093bc95cc93756fb905180d01c28656b";
hash = "sha256-KwUOmjGnfjsQomtn2So/SLoe3XSStD+TbWPsxJaaGcc="; hash = "sha256-KwUOmjGnfjsQomtn2So/SLoe3XSStD+TbWPsxJaaGcc=";
}; };
patches = [ patches = [
./asset-dir.patch ./asset-dir.patch
]; ];
nativeBuildInputs = [ nativeBuildInputs = [
imagemagick7 imagemagick7
]; ];
buildInputs = [ buildInputs = [
curl curl
libzip libzip
@ -32,12 +36,10 @@ stdenv.mkDerivation (final: {
SDL SDL
SDL_image SDL_image
]; ];
makeFlags = [ makeFlags = [
"DESTDIR=$(out)" "DESTDIR=$(out)"
]; ];
# installPhase = ''
# make install DESTDIR=$out
# '';
meta = { meta = {
homepage = "https://github.com/linappleii/linapple"; homepage = "https://github.com/linappleii/linapple";