nixpkgs/pkgs/tools/cd-dvd/cdrtools/default.nix

38 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, m4, acl, libcap, Carbon, IOKit }:
stdenv.mkDerivation rec {
pname = "cdrtools";
2019-10-19 21:08:06 +00:00
version = "3.02a09";
src = fetchurl {
url = "mirror://sourceforge/cdrtools/${pname}-${version}.tar.bz2";
2019-10-19 21:08:06 +00:00
sha256 = "10ayj48jax2pvsv6j5gybwfsx7b74zdjj84znwag7wwf8n7l6a5a";
};
2019-10-19 21:08:06 +00:00
nativeBuildInputs = [ m4 ];
2019-07-12 15:26:08 +00:00
buildInputs = if stdenv.isDarwin then [ Carbon IOKit ] else [ acl libcap ];
2015-12-11 22:36:52 +00:00
postPatch = ''
sed "/\.mk3/d" -i libschily/Targets.man
substituteInPlace man/Makefile --replace "man4" ""
2019-10-19 21:08:06 +00:00
substituteInPlace RULES/rules.prg --replace "/bin/" ""
'';
2019-06-19 15:36:06 +00:00
dontConfigure = true;
2015-12-11 22:36:52 +00:00
2019-10-19 21:08:06 +00:00
makeFlags = [ "GMAKE_NOWARN=true" "INS_BASE=/" "INS_RBASE=/" "DESTDIR=${placeholder "out"}" ];
2015-12-11 22:36:52 +00:00
2019-10-19 21:08:06 +00:00
enableParallelBuilding = false; # parallel building fails on some linux machines
meta = with lib; {
2019-10-19 21:08:06 +00:00
homepage = "http://cdrtools.sourceforge.net/private/cdrecord.html";
description = "Highly portable CD/DVD/BluRay command line recording software";
2019-10-19 21:08:06 +00:00
license = with licenses; [ cddl gpl2 lgpl21 ];
2019-07-12 15:26:08 +00:00
platforms = with platforms; linux ++ darwin;
# Licensing issues: This package contains code licensed under CDDL, GPL2
# and LGPL2. There is a debate regarding the legality of distributing this
# package in binary form.
hydraPlatforms = [];
};
}