about summary refs log tree commit diff
path: root/pkgs/tools/audio/midicsv/default.nix
blob: 10f78807a73e02941a49504b980f9759fe0b1575 (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;
  };
}