mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
parent
7e305cbd25
commit
61b60fb1ad
1 changed files with 9 additions and 7 deletions
|
@ -2,9 +2,9 @@
|
|||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "cdrtools-2.01";
|
||||
|
||||
configurePhase = "prefix=$out";
|
||||
|
||||
|
||||
configurePhase = "prefix=$out";
|
||||
|
||||
#hack, I'm getting "chown: invalid user: `bin" error, so replace chown by a nop dummy script
|
||||
preInstall = ''
|
||||
mkdir "$TMP/bin"
|
||||
|
@ -14,16 +14,18 @@ stdenv.mkDerivation rec {
|
|||
PATH="$TMP/bin:$PATH"
|
||||
done
|
||||
'';
|
||||
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/cdrtools/${name}.tar.bz2";
|
||||
md5 = "d44a81460e97ae02931c31188fe8d3fd";
|
||||
};
|
||||
|
||||
|
||||
patches = [./cdrtools-2.01-install.patch];
|
||||
|
||||
meta = {
|
||||
description = "Highly portable CD/DVD/BluRay command line recording software (deprecated; use cdrkit instead)";
|
||||
homepage = http://sourceforge.net/projects/cdrtools/; # berlios shut down; I found no better link
|
||||
homepage = http://sourceforge.net/projects/cdrtools/;
|
||||
description = "Highly portable CD/DVD/BluRay command line recording software";
|
||||
broken = true; # Build errors, probably because the source
|
||||
# can't deal with recent versions of gcc.
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue