soundfont-generaluser: init at 1.471

This commit is contained in:
ckie 2022-03-24 12:49:38 +02:00
parent 9cc05394bc
commit 2bc1cd1ac4
No known key found for this signature in database
GPG key ID: 13E79449C0525215
3 changed files with 32 additions and 0 deletions

View file

@ -389,6 +389,11 @@ in mkLicense lset) ({
free = false;
};
generaluser = {
fullName = "GeneralUser GS License v2.0";
url = "http://www.schristiancollins.com/generaluser.php"; # license included in sources
};
gpl1Only = {
spdxId = "GPL-1.0-only";
fullName = "GNU General Public License v1.0 only";

View file

@ -0,0 +1,25 @@
{ lib, stdenv, fetchzip }:
stdenv.mkDerivation rec {
pname = "generaluser";
version = "1.471";
# we can't use fetchurl since stdenv does not handle unpacking *.zip's by default.
src = fetchzip {
# Linked on http://www.schristiancollins.com/generaluser.php:
url = "https://www.dropbox.com/s/4x27l49kxcwamp5/GeneralUser_GS_${version}.zip";
sha256 = "sha256-lwUlWubXiVZ8fijKuNF54YQjT0uigjNAbjKaNjmC51s=";
};
installPhase = ''
install -Dm644 GeneralUser*.sf2 $out/share/soundfonts/GeneralUser-GS.sf2
'';
meta = with lib; {
description = "a SoundFont bank featuring 259 instrument presets and 11 drum kits";
homepage = "http://www.schristiancollins.com/generaluser.php";
license = licenses.generaluser;
platforms = platforms.all;
maintainers = with maintainers; [ ckie ];
};
}

View file

@ -24305,6 +24305,8 @@ with pkgs;
soundfont-fluid = callPackage ../data/soundfonts/fluid { };
soundfont-generaluser = callPackage ../data/soundfonts/generaluser { };
soundfont-ydp-grand = callPackage ../data/soundfonts/ydp-grand { };
spdx-license-list-data = callPackage ../data/misc/spdx-license-list-data { };