summary refs log tree commit diff
path: root/pkgs/data
diff options
context:
space:
mode:
authorBjørn Forsman <bjorn.forsman@gmail.com>2013-05-18 20:03:03 +0200
committerBjørn Forsman <bjorn.forsman@gmail.com>2013-05-19 14:09:36 +0200
commitab7d500f36fb432760cb313782c3f5c45b90fb98 (patch)
treeee384255265b118298ecaa48e4eaacefa2e6c417 /pkgs/data
parentd35466a1f5bda18a61db9fb123af643c4ce229cc (diff)
downloadnixlib-ab7d500f36fb432760cb313782c3f5c45b90fb98.tar
nixlib-ab7d500f36fb432760cb313782c3f5c45b90fb98.tar.gz
nixlib-ab7d500f36fb432760cb313782c3f5c45b90fb98.tar.bz2
nixlib-ab7d500f36fb432760cb313782c3f5c45b90fb98.tar.lz
nixlib-ab7d500f36fb432760cb313782c3f5c45b90fb98.tar.xz
nixlib-ab7d500f36fb432760cb313782c3f5c45b90fb98.tar.zst
nixlib-ab7d500f36fb432760cb313782c3f5c45b90fb98.zip
freepats: new package
freepats is a project to create a free and open set of instrument
patches, in any format, that can be used with softsynths.

I'm adding it because it is needed for WildMIDI, which is needed for
MIDI support in Qmmp (audio player). I'll add WildMIDI and Qmmp in the
next commit(s).
Diffstat (limited to 'pkgs/data')
-rw-r--r--pkgs/data/misc/freepats/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/data/misc/freepats/default.nix b/pkgs/data/misc/freepats/default.nix
new file mode 100644
index 000000000000..356041bf761f
--- /dev/null
+++ b/pkgs/data/misc/freepats/default.nix
@@ -0,0 +1,22 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation rec {
+  name = "freepats-20060219";
+
+  src = fetchurl {
+    url = "http://freepats.zenvoid.org/${name}.tar.bz2";
+    sha256 = "12iw36rd94zirll96cd5k0va7p5hxmf2shvjlhzihcmjaw8flq82";
+  };
+
+  installPhase = ''mkdir "$out"; cp -r . "$out"'';
+
+  meta = {
+    description = "Instrument patches, for MIDI synthesizers";
+    longDescription = ''
+      Freepats is a project to create a free and open set of instrument
+      patches, in any format, that can be used with softsynths.
+    '';
+    homepage = http://freepats.zenvoid.org/;
+    license = stdenv.lib.licenses.gpl2;
+  };
+}