2015-12-11 23:36:52 +01:00
|
|
|
{ stdenv, fetchurl, acl, libcap }:
|
2005-08-30 21:41:10 +02:00
|
|
|
|
2014-05-18 13:25:43 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2015-12-11 23:36:52 +01:00
|
|
|
name = "cdrtools-3.02a03";
|
2014-07-10 13:11:32 +02:00
|
|
|
|
2005-08-30 21:41:10 +02:00
|
|
|
src = fetchurl {
|
2014-05-18 13:25:43 +02:00
|
|
|
url = "mirror://sourceforge/cdrtools/${name}.tar.bz2";
|
2015-12-11 23:36:52 +01:00
|
|
|
sha256 = "02gjxib0sgzsdicnb7496x0a175w1sb34v8zc9mdi8cfw7skw996";
|
2005-08-30 21:41:10 +02:00
|
|
|
};
|
2014-07-10 13:11:32 +02:00
|
|
|
|
2015-12-11 23:36:52 +01:00
|
|
|
patches = [ ./fix-paths.patch ];
|
|
|
|
|
|
|
|
buildInputs = [ acl libcap ];
|
|
|
|
|
|
|
|
configurePhase = "true";
|
|
|
|
|
|
|
|
GMAKE_NOWARN = true;
|
|
|
|
|
|
|
|
makeFlags = [ "INS_BASE=/" "INS_RBASE=/" "DESTDIR=$(out)" ];
|
2007-10-19 16:16:43 +02:00
|
|
|
|
2015-12-11 23:36:52 +01:00
|
|
|
meta = with stdenv.lib; {
|
2014-07-10 13:11:32 +02:00
|
|
|
homepage = http://sourceforge.net/projects/cdrtools/;
|
|
|
|
description = "Highly portable CD/DVD/BluRay command line recording software";
|
2015-02-17 12:23:10 +01:00
|
|
|
# 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.
|
2015-12-11 23:36:52 +01:00
|
|
|
license = licenses.unfree;
|
|
|
|
platforms = platforms.linux;
|
2007-10-19 16:16:43 +02:00
|
|
|
};
|
2005-08-30 21:41:10 +02:00
|
|
|
}
|