pari: 2.15.5 -> 2.17.1 (#348442)
[NixPkgs.git] / pkgs / by-name / so / soundfont-arachno / package.nix
blobb92990e07b25bc681c7fe0fffa1915800841d270
2   lib,
3   stdenvNoCC,
4   fetchzip,
5 }:
7 stdenvNoCC.mkDerivation rec {
8   pname = "soundfont-arachno";
9   version = "1.0";
11   src = fetchzip {
12     # Linked on http://www.arachnosoft.com/main/download.php?id=soundfont-sf2:
13     url = "https://www.dropbox.com/s/2rnpya9ecb9m4jh/arachno-soundfont-${
14       builtins.replaceStrings [ "." ] [ "" ] version
15     }-sf2.zip";
16     hash = "sha256-Z5ETe0AKPCi4KlM2xOlNcyQn1xvCuor3S/tcrF+AwNQ=";
17     stripRoot = false;
18   };
20   installPhase = ''
21     runHook preInstall
22     install -Dm444 Arachno*.sf2 $out/share/soundfonts/arachno.sf2
23     runHook postInstall
24   '';
26   meta = with lib; {
27     description = "General MIDI-compliant bank, aimed at enhancing the realism of your MIDI files and arrangements";
28     homepage = "http://www.arachnosoft.com/main/soundfont.php";
29     license = licenses.unfree;
30     platforms = platforms.all;
31     maintainers = with maintainers; [ mrtnvgr ];
32   };