diff options
author | Nikolay Amiantov | 2015-12-01 20:05:17 +0300 |
---|---|---|
committer | Nikolay Amiantov | 2015-12-01 20:46:31 +0300 |
commit | c50d013d1fe093faeec9295ca6c9c9cbbcde2e28 (patch) | |
tree | 76a467f912f327aa8abbc2a93df4ce9bda5da324 /pkgs/data/soundfonts | |
parent | d573b1e7a9152c87a92bb8818e2c4b62114fe7f8 (diff) |
soundfont-fluid: init at 3
Diffstat (limited to 'pkgs/data/soundfonts')
-rw-r--r-- | pkgs/data/soundfonts/fluid/default.nix | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/data/soundfonts/fluid/default.nix b/pkgs/data/soundfonts/fluid/default.nix new file mode 100644 index 000000000000..578e0180ec39 --- /dev/null +++ b/pkgs/data/soundfonts/fluid/default.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchurl }: + +stdenv.mkDerivation { + name = "Fluid-3"; + + src = fetchurl { + url = "http://www.musescore.org/download/fluid-soundfont.tar.gz"; + sha256 = "1f96bi0y6rms255yr8dfk436azvwk66c99j6p43iavyq8jg7c5f8"; + }; + + sourceRoot = "."; + + installPhase = '' + install -Dm644 "FluidR3 GM2-2.SF2" $out/share/soundfonts/FluidR3_GM2-2.sf2 + ''; + + meta = with stdenv.lib; { + description = "Frank Wen's pro-quality GM/GS soundfont"; + homepage = "http://www.hammersound.net/"; + license = licenses.mit; + platforms = platforms.all; + maintainers = with maintainers; [ abbradar ]; + }; +} |