mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
soundfont-arachno: init at 1.0
This commit is contained in:
parent
b5f97b03a3
commit
11e6b38444
27
pkgs/by-name/so/soundfont-arachno/package.nix
Normal file
27
pkgs/by-name/so/soundfont-arachno/package.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ lib, stdenvNoCC, fetchzip }:
|
||||
|
||||
stdenvNoCC.mkDerivation rec {
|
||||
pname = "soundfont-arachno";
|
||||
version = "1.0";
|
||||
|
||||
src = fetchzip {
|
||||
# Linked on http://www.arachnosoft.com/main/download.php?id=soundfont-sf2:
|
||||
url = "https://www.dropbox.com/s/2rnpya9ecb9m4jh/arachno-soundfont-${builtins.replaceStrings ["."] [""] version}-sf2.zip";
|
||||
hash = "sha256-Z5ETe0AKPCi4KlM2xOlNcyQn1xvCuor3S/tcrF+AwNQ=";
|
||||
stripRoot = false;
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
install -Dm444 Arachno*.sf2 $out/share/soundfonts/arachno.sf2
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "General MIDI-compliant bank, aimed at enhancing the realism of your MIDI files and arrangements";
|
||||
homepage = "http://www.arachnosoft.com/main/soundfont.php";
|
||||
license = licenses.unfree;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ mrtnvgr ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user