mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
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).
This commit is contained in:
parent
d35466a1f5
commit
ab7d500f36
22
pkgs/data/misc/freepats/default.nix
Normal file
22
pkgs/data/misc/freepats/default.nix
Normal file
@ -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;
|
||||
};
|
||||
}
|
@ -6573,6 +6573,8 @@ let
|
||||
|
||||
freefont_ttf = callPackage ../data/fonts/freefont-ttf { };
|
||||
|
||||
freepats = callPackage ../data/misc/freepats { };
|
||||
|
||||
gentium = callPackage ../data/fonts/gentium {};
|
||||
|
||||
gnome_user_docs = callPackage ../data/documentation/gnome-user-docs { };
|
||||
|
Loading…
Reference in New Issue
Block a user