mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
22 lines
592 B
Nix
22 lines
592 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "midicsv-1.1";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.fourmilab.ch/webtools/midicsv/${name}.tar.gz";
|
|
sha256 = "1vvhk2nf9ilfw0wchmxy8l13hbw9cnpz079nsx5srsy4nnd78nkw";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace Makefile --replace /usr/local $out
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Losslessly translate MIDI to CSV and back";
|
|
homepage = http://www.fourmilab.ch/webtools/midicsv/;
|
|
license = licenses.publicDomain;
|
|
maintainers = with maintainers; [ orivej ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|