clean up
This commit is contained in:
parent
9c364b72f7
commit
7f8875d126
1 changed files with 5 additions and 3 deletions
|
@ -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";
|
||||||
|
|
Loading…
Reference in a new issue