28b6fb61e6
This is done for the sake of Yosemite, which does not have gcc, and yet this change is also compatible with Linux.
18 lines
419 B
Nix
18 lines
419 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "cdparanoia-III-10.2";
|
|
|
|
src = fetchurl {
|
|
url = "http://downloads.xiph.org/releases/cdparanoia/${name}.src.tgz";
|
|
sha256 = "1pv4zrajm46za0f6lv162iqffih57a8ly4pc69f7y0gfyigb8p80";
|
|
};
|
|
|
|
preConfigure = "unset CC";
|
|
|
|
meta = {
|
|
homepage = http://xiph.org/paranoia;
|
|
description = "A tool and library for reading digital audio from CDs";
|
|
};
|
|
}
|