2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2013-05-18 20:03:03 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2022-03-22 14:05:43 +01:00
|
|
|
pname = "freepats";
|
|
|
|
version = "20060219";
|
2013-05-18 20:03:03 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2022-03-22 14:05:43 +01:00
|
|
|
url = "https://freepats.zenvoid.org/freepats-${version}.tar.bz2";
|
2013-05-18 20:03:03 +02:00
|
|
|
sha256 = "12iw36rd94zirll96cd5k0va7p5hxmf2shvjlhzihcmjaw8flq82";
|
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''mkdir "$out"; cp -r . "$out"'';
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2013-05-18 20:03:03 +02:00
|
|
|
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.
|
|
|
|
'';
|
2022-01-06 18:01:33 +01:00
|
|
|
homepage = "https://freepats.zenvoid.org/";
|
2013-05-20 19:33:18 +02:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.all;
|
2014-01-02 17:53:57 +01:00
|
|
|
maintainers = [ maintainers.bjornfor ];
|
2013-05-18 20:03:03 +02:00
|
|
|
};
|
|
|
|
}
|