23 lines
618 B
Nix
23 lines
618 B
Nix
|
{ 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;
|
||
|
};
|
||
|
}
|