3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #6387 from nathanielbaxter/dev/cdrtools

cdrtools: Update to 3.00
This commit is contained in:
lethalman 2015-02-17 13:12:39 +01:00
commit 00ebcd0c36

View file

@ -1,31 +1,23 @@
{stdenv, fetchurl}:
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "cdrtools-2.01";
name = "cdrtools-3.00";
configurePhase = "prefix=$out";
#hack, I'm getting "chown: invalid user: `bin" error, so replace chown by a nop dummy script
preInstall = ''
mkdir "$TMP/bin"
for i in chown chgrp; do
echo '#!/bin/sh' >> "$TMP/bin/$i"
chmod +x "$TMP/bin/$i"
PATH="$TMP/bin:$PATH"
done
'';
configurePhase = "true";
src = fetchurl {
url = "mirror://sourceforge/cdrtools/${name}.tar.bz2";
sha256 = "08kc5w4z5k2ka7i05an7gfzzp0fsrc403riav7bw8xws0rsn32vj";
sha256 = "0ga2fdwn3898jas5mabb6cc2al9acqb2yyzph2w76m85414bd73z";
};
patches = [./cdrtools-2.01-install.patch];
patches = [ ./cdrtools-2.01-install.patch ];
meta = {
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.
# Licensing issues: This package contains code licensed under CDDL, GPL2
# and LGPL2. There is debate regarding the legality of this licensing.
# Marked as unfree to avoid any possible legal issues.
license = stdenv.lib.licenses.unfree;
};
}