dwarf-fortress/unfuck: add 0.47.05

This commit is contained in:
Jonathan Ringer 2021-02-28 16:07:41 -08:00 committed by Jonathan Ringer
parent 4cc7482b21
commit ea10f44327

View file

@ -12,6 +12,7 @@
, ncurses , ncurses
, glib , glib
, gtk2 , gtk2
, gtk3
, libsndfile , libsndfile
, zlib , zlib
, dfVersion , dfVersion
@ -58,6 +59,10 @@ let
unfuckRelease = "0.47.04"; unfuckRelease = "0.47.04";
sha256 = "1wa990xbsyiiz7abq153xmafvvk1dmgz33rp907d005kzl1z86i9"; sha256 = "1wa990xbsyiiz7abq153xmafvvk1dmgz33rp907d005kzl1z86i9";
}; };
"0.47.05" = {
unfuckRelease = "0.47.04";
sha256 = "1wa990xbsyiiz7abq153xmafvvk1dmgz33rp907d005kzl1z86i9";
};
}; };
release = release =
@ -90,11 +95,16 @@ stdenv.mkDerivation {
glew glew
openalSoft openalSoft
ncurses ncurses
gtk2
libsndfile libsndfile
zlib zlib
libGL libGL
]; ]
# switched to gtk3 in 0.47.05
++ (if lib.versionOlder release.unfuckRelease "0.47.05" then [
gtk2
] else [
gtk3
]);
# Don't strip unused symbols; dfhack hooks into some of them. # Don't strip unused symbols; dfhack hooks into some of them.
dontStrip = true; dontStrip = true;