summary refs log tree commit diff
path: root/pkgs/applications/audio/cdparanoia/default.nix
blob: 298e790fe2e7c4cc1b6ec5ba30af08b12c2909c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{stdenv, fetchurl}:

stdenv.mkDerivation {
  name = "cdparanoia-III-alpha9.8";
  src = fetchurl {
    url = http://catamaran.labs.cs.uu.nl/dist/tarballs/cdparanoia-III-alpha9.8.src.tgz;
    md5 = "7218e778b5970a86c958e597f952f193" ;
  };
  
  patches = [./fix.patch];
}