summary refs log tree commit diff
path: root/pkgs/games/gzdoom
diff options
context:
space:
mode:
authorCray Elliott <MP2E@archlinux.us>2017-05-22 04:34:11 -0700
committerCray Elliott <MP2E@archlinux.us>2017-05-22 04:37:39 -0700
commit6c7b2081a793b2d988a609a478752bc40e477c93 (patch)
tree34c407643dce069c17b4638f82ddbae183e8f561 /pkgs/games/gzdoom
parent638fb38ef046d02095b03816c21857b19df0dcf5 (diff)
downloadnixlib-6c7b2081a793b2d988a609a478752bc40e477c93.tar
nixlib-6c7b2081a793b2d988a609a478752bc40e477c93.tar.gz
nixlib-6c7b2081a793b2d988a609a478752bc40e477c93.tar.bz2
nixlib-6c7b2081a793b2d988a609a478752bc40e477c93.tar.lz
nixlib-6c7b2081a793b2d988a609a478752bc40e477c93.tar.xz
nixlib-6c7b2081a793b2d988a609a478752bc40e477c93.tar.zst
nixlib-6c7b2081a793b2d988a609a478752bc40e477c93.zip
gzdoom: 2.3.2 -> 3.0.1
also change license to gpl3, gzdoom migrated licenses! (yay)
Diffstat (limited to 'pkgs/games/gzdoom')
-rw-r--r--pkgs/games/gzdoom/default.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/pkgs/games/gzdoom/default.nix b/pkgs/games/gzdoom/default.nix
index b485c8063527..6e1a98bf258a 100644
--- a/pkgs/games/gzdoom/default.nix
+++ b/pkgs/games/gzdoom/default.nix
@@ -4,13 +4,13 @@
 
 stdenv.mkDerivation rec {
   name = "gzdoom-${version}";
-  version = "2.3.2";
+  version = "3.0.1";
 
   src = fetchFromGitHub {
     owner = "coelckers";
     repo = "gzdoom";
     rev = "g${version}";
-    sha256 = "1ys7wl4ygvm2lm49qjpql6c5i8gydmbg4f436bcpkywf5srr6xrd";
+    sha256 = "0s0hl7pa2gr3cm884q7np5naybhv4hqhbfd3s45a8hdf72n6c9cm";
   };
 
   nativeBuildInputs = [ cmake makeWrapper ];
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
     sed -i \
       -e "s@/usr/share/sounds/sf2/@${soundfont-fluid}/share/soundfonts/@g" \
       -e "s@FluidR3_GM.sf2@FluidR3_GM2-2.sf2@g" \
-      src/sound/music_fluidsynth_mididevice.cpp
+      src/sound/mididevices/music_fluidsynth_mididevice.cpp
   '';
 
   installPhase = ''
@@ -42,8 +42,7 @@ stdenv.mkDerivation rec {
   meta = with stdenv.lib; {
     homepage = "https://github.com/coelckers/gzdoom";
     description = "A Doom source port based on ZDoom. It features an OpenGL renderer and lots of new features";
-    # Doom source license, MAME license
-    license = licenses.unfreeRedistributable;
+    license = licenses.gpl3;
     platforms = platforms.linux;
     maintainers = with maintainers; [ lassulus ];
   };