2015-02-09 07:15:58 +01:00
|
|
|
{ stdenv, fetchurl }:
|
2005-08-30 21:41:10 +02:00
|
|
|
|
2014-05-18 13:25:43 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2015-02-09 07:15:58 +01:00
|
|
|
name = "cdrtools-3.00";
|
2014-07-10 13:11:32 +02:00
|
|
|
|
2015-02-09 07:15:58 +01:00
|
|
|
configurePhase = "true";
|
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-02-09 07:15:58 +01:00
|
|
|
sha256 = "0ga2fdwn3898jas5mabb6cc2al9acqb2yyzph2w76m85414bd73z";
|
2005-08-30 21:41:10 +02:00
|
|
|
};
|
2014-07-10 13:11:32 +02:00
|
|
|
|
2015-02-09 07:15:58 +01:00
|
|
|
patches = [ ./cdrtools-2.01-install.patch ];
|
2007-10-19 16:16:43 +02:00
|
|
|
|
|
|
|
meta = {
|
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.
|
|
|
|
license = stdenv.lib.licenses.unfree;
|
2007-10-19 16:16:43 +02:00
|
|
|
};
|
2005-08-30 21:41:10 +02:00
|
|
|
}
|