summary refs log tree commit diff
path: root/pkgs/tools/audio/midicsv/default.nix
blob: e5f3f6124b9b271ed1bd5598bbc68abd21c2e844 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ 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;
  };
}