forked from mirrors/nixpkgs
devilutionx: pass static version of SDL2 into derivation
This commit is contained in:
parent
51ac8edff3
commit
f7b51c1dcf
|
@ -79,7 +79,7 @@ stdenv.mkDerivation rec {
|
|||
buildInputs = [
|
||||
fmt
|
||||
libpng
|
||||
(SDL2.override { withStatic = true; })
|
||||
SDL2
|
||||
SDL2_image
|
||||
];
|
||||
|
||||
|
|
|
@ -29814,7 +29814,11 @@ with pkgs;
|
|||
|
||||
ddnet = callPackage ../games/ddnet { };
|
||||
|
||||
devilutionx = callPackage ../games/devilutionx {};
|
||||
devilutionx = callPackage ../games/devilutionx {
|
||||
SDL2 = SDL2.override {
|
||||
withStatic = true;
|
||||
};
|
||||
};
|
||||
|
||||
dhewm3 = callPackage ../games/dhewm3 {};
|
||||
|
||||
|
|
Loading…
Reference in a new issue