mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 22:03:54 +03:00
crawl: 0.21.1 -> 0.22.0
This commit is contained in:
parent
0b124c1e91
commit
3d56684d95
@ -5,15 +5,16 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "crawl-${version}${lib.optionalString tileMode "-tiles"}";
|
name = "crawl-${version}${lib.optionalString tileMode "-tiles"}";
|
||||||
version = "0.21.1";
|
version = "0.22.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "crawl-ref";
|
owner = "crawl-ref";
|
||||||
repo = "crawl-ref";
|
repo = "crawl-ref";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "191pmd7vpp9qni5l13fb5s8g1axniah8a6hhi31gp0848c8n7hlh";
|
sha256 = "1bzhqrc944rgpdnnid3c5h2r3dvyw70cs70hazzm0cv5aipdkhbl";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Patch hard-coded paths in the makefile
|
||||||
patches = [ ./crawl_purify.patch ];
|
patches = [ ./crawl_purify.patch ];
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig which perl pngcrush advancecomp ];
|
nativeBuildInputs = [ pkgconfig which perl pngcrush advancecomp ];
|
||||||
@ -25,9 +26,7 @@ stdenv.mkDerivation rec {
|
|||||||
preBuild = ''
|
preBuild = ''
|
||||||
cd crawl-ref/source
|
cd crawl-ref/source
|
||||||
echo "${version}" > util/release_ver
|
echo "${version}" > util/release_ver
|
||||||
for i in util/*; do
|
patchShebangs 'util'
|
||||||
patchShebangs $i
|
|
||||||
done
|
|
||||||
patchShebangs util/gen-mi-enum
|
patchShebangs util/gen-mi-enum
|
||||||
rm -rf contrib
|
rm -rf contrib
|
||||||
'';
|
'';
|
||||||
|
@ -19546,7 +19546,7 @@ with pkgs;
|
|||||||
|
|
||||||
crafty = callPackage ../games/crafty { };
|
crafty = callPackage ../games/crafty { };
|
||||||
|
|
||||||
crawlTiles = crawl.override {
|
crawlTiles = callPackage ../games/crawl {
|
||||||
tileMode = true;
|
tileMode = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user