devilutionx: update sha256, fix build
This commit is contained in:
parent
b90403a4f9
commit
dff8fd1d67
1 changed files with 8 additions and 1 deletions
|
@ -1,4 +1,5 @@
|
||||||
{ lib, stdenv, fetchFromGitHub, cmake, SDL2, SDL2_mixer, SDL2_ttf, libsodium, pkg-config }:
|
{ lib, stdenv, fetchFromGitHub, cmake, SDL2, SDL2_mixer, SDL2_ttf, libsodium, pkg-config }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "devilutionx";
|
pname = "devilutionx";
|
||||||
version = "1.2.0";
|
version = "1.2.0";
|
||||||
|
@ -7,9 +8,13 @@ stdenv.mkDerivation rec {
|
||||||
owner = "diasurgical";
|
owner = "diasurgical";
|
||||||
repo = "devilutionX";
|
repo = "devilutionX";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "03w3bgmzwsbycx3fzvn47fsmabl069gw77yn2fqg89wlgaw1yrr9";
|
sha256 = "034xkz0a7j2nba17mh44r0kamcblvykdwfsjvjwaz2mrcsmzkr9z";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace Source/init.cpp --replace "/usr/share/diasurgical/devilutionx/" "${placeholder "out"}/share/diasurgical/devilutionx/"
|
||||||
|
'';
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = [
|
||||||
"-I${SDL2_ttf}/include/SDL2"
|
"-I${SDL2_ttf}/include/SDL2"
|
||||||
''-DTTF_FONT_PATH="${placeholder "out"}/share/fonts/truetype/CharisSILB.ttf"''
|
''-DTTF_FONT_PATH="${placeholder "out"}/share/fonts/truetype/CharisSILB.ttf"''
|
||||||
|
@ -17,6 +22,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
cmakeFlags = [
|
cmakeFlags = [
|
||||||
"-DBINARY_RELEASE=ON"
|
"-DBINARY_RELEASE=ON"
|
||||||
|
"-DVERSION_NUM=${version}"
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config cmake ];
|
nativeBuildInputs = [ pkg-config cmake ];
|
||||||
|
@ -31,6 +37,7 @@ stdenv.mkDerivation rec {
|
||||||
'' else ''
|
'' else ''
|
||||||
install -Dm755 -t $out/bin devilutionx
|
install -Dm755 -t $out/bin devilutionx
|
||||||
install -Dt $out/share/fonts/truetype ../Packaging/resources/CharisSILB.ttf
|
install -Dt $out/share/fonts/truetype ../Packaging/resources/CharisSILB.ttf
|
||||||
|
install -Dt $out/share/diasurgical/devilutionx ../Packaging/resources/devilutionx.mpq
|
||||||
|
|
||||||
# TODO: icons and .desktop (see Packages/{debian,fedora}/*)
|
# TODO: icons and .desktop (see Packages/{debian,fedora}/*)
|
||||||
'') + ''
|
'') + ''
|
||||||
|
|
Loading…
Reference in a new issue