summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorArseniy Seroka <jagajaga@users.noreply.github.com>2016-03-25 17:15:54 +0300
committerArseniy Seroka <jagajaga@users.noreply.github.com>2016-03-25 17:15:54 +0300
commit11aaeb9200e5ac8764d2077f53fc009ad2948263 (patch)
tree52f605442eef95d620e5d094fe635d02bb43fc30 /pkgs
parent574a6d34d229b0a2ac53db9c2e66333b020dcab2 (diff)
parentfe60b57e493d3e923938df7d6fee35276557701d (diff)
downloadnixlib-11aaeb9200e5ac8764d2077f53fc009ad2948263.tar
nixlib-11aaeb9200e5ac8764d2077f53fc009ad2948263.tar.gz
nixlib-11aaeb9200e5ac8764d2077f53fc009ad2948263.tar.bz2
nixlib-11aaeb9200e5ac8764d2077f53fc009ad2948263.tar.lz
nixlib-11aaeb9200e5ac8764d2077f53fc009ad2948263.tar.xz
nixlib-11aaeb9200e5ac8764d2077f53fc009ad2948263.tar.zst
nixlib-11aaeb9200e5ac8764d2077f53fc009ad2948263.zip
Merge pull request #14184 from nico202/dgz
drumgizmo: 0.9.8.1 -> 0.9.9
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/audio/drumgizmo/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/audio/drumgizmo/default.nix b/pkgs/applications/audio/drumgizmo/default.nix
index 9afcae1901ef..08d0afcd3f2b 100644
--- a/pkgs/applications/audio/drumgizmo/default.nix
+++ b/pkgs/applications/audio/drumgizmo/default.nix
@@ -3,12 +3,12 @@
 }:
 
 stdenv.mkDerivation rec {
-  version = "0.9.8.1";
+  version = "0.9.9";
   name = "drumgizmo-${version}";
 
   src = fetchurl {
     url = "http://www.drumgizmo.org/releases/${name}/${name}.tar.gz";
-    sha256 = "1plfjhwhaz1mr3kgf5imcp3kjflk6ni9sq39gmxjxzya6gn2r6gg";
+    sha256 = "03dnh2p4s6n107n0r86h9j1jwy85a8qwjkh0288k60qpdqy1c7vp";
   };
 
   configureFlags = [ "--enable-lv2" ];
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
   meta = with stdenv.lib; {
     description = "An LV2 sample based drum plugin";
     homepage = http://www.drumgizmo.org;
-    license = licenses.gpl3;
+    license = licenses.lgpl3;
     platforms = platforms.linux;
     maintainers = [ maintainers.goibhniu maintainers.nico202 ];
   };