lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

devilutionx: pass static version of SDL2 into derivation

+6 -2
+1 -1
pkgs/games/devilutionx/default.nix
··· 79 79 buildInputs = [ 80 80 fmt 81 81 libpng 82 - (SDL2.override { withStatic = true; }) 82 + SDL2 83 83 SDL2_image 84 84 ]; 85 85
+5 -1
pkgs/top-level/all-packages.nix
··· 29814 29814 29815 29815 ddnet = callPackage ../games/ddnet { }; 29816 29816 29817 - devilutionx = callPackage ../games/devilutionx {}; 29817 + devilutionx = callPackage ../games/devilutionx { 29818 + SDL2 = SDL2.override { 29819 + withStatic = true; 29820 + }; 29821 + }; 29818 29822 29819 29823 dhewm3 = callPackage ../games/dhewm3 {}; 29820 29824