nixpkgs/pkgs/applications/misc/cdrtools/default.nix

36 lines
1004 B
Nix
Raw Normal View History

2015-12-11 22:36:52 +00:00
{ stdenv, fetchurl, acl, libcap }:
stdenv.mkDerivation rec {
2015-12-11 22:36:52 +00:00
name = "cdrtools-3.02a03";
src = fetchurl {
url = "mirror://sourceforge/cdrtools/${name}.tar.bz2";
2015-12-11 22:36:52 +00:00
sha256 = "02gjxib0sgzsdicnb7496x0a175w1sb34v8zc9mdi8cfw7skw996";
};
2015-12-11 22:36:52 +00:00
patches = [ ./fix-paths.patch ];
buildInputs = [ acl libcap ];
postPatch = ''
sed "/\.mk3/d" -i libschily/Targets.man
substituteInPlace man/Makefile --replace "man4" ""
'';
2015-12-11 22:36:52 +00:00
configurePhase = "true";
GMAKE_NOWARN = true;
makeFlags = [ "INS_BASE=/" "INS_RBASE=/" "DESTDIR=$(out)" ];
2015-12-11 22:36:52 +00:00
meta = with stdenv.lib; {
homepage = http://sourceforge.net/projects/cdrtools/;
description = "Highly portable CD/DVD/BluRay command line recording software";
2015-02-17 11:23:10 +00: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 22:36:52 +00:00
license = licenses.unfree;
platforms = platforms.linux;
};
}