2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, ncurses, readline, autoreconfHook }:
|
2011-01-10 11:04:20 +00:00
|
|
|
|
2015-04-03 15:36:56 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "udftools";
|
2018-08-27 09:15:23 +01:00
|
|
|
version = "2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "pali";
|
|
|
|
repo = "udftools";
|
2019-09-09 00:38:31 +01:00
|
|
|
rev = version;
|
2018-08-27 09:15:23 +01:00
|
|
|
sha256 = "0mz04h3rki6ljwfs15z83gf4vv816w7xgz923waiqgmfj9xpvx87";
|
2011-01-10 11:04:20 +00:00
|
|
|
};
|
|
|
|
|
2015-04-03 15:36:56 +01:00
|
|
|
buildInputs = [ ncurses readline ];
|
2018-08-27 09:15:23 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2011-01-10 11:04:20 +00:00
|
|
|
|
2016-02-26 17:38:15 +00:00
|
|
|
hardeningDisable = [ "fortify" ];
|
2016-02-07 23:27:47 +00:00
|
|
|
|
2016-03-26 15:47:46 +00:00
|
|
|
NIX_CFLAGS_COMPILE = "-std=gnu90";
|
|
|
|
|
2015-04-03 15:36:56 +01:00
|
|
|
preConfigure = ''
|
2011-01-10 11:04:20 +00:00
|
|
|
sed -e '1i#include <limits.h>' -i cdrwtool/cdrwtool.c -i pktsetup/pktsetup.c
|
|
|
|
sed -e 's@[(]char[*][)]spm [+]=@spm = ((char*) spm) + @' -i wrudf/wrudf.c
|
2016-03-26 15:47:46 +00:00
|
|
|
sed -e '27i#include <string.h>' -i include/udf_endian.h
|
|
|
|
sed -e '38i#include <string.h>' -i wrudf/wrudf-cdrw.c
|
|
|
|
sed -e '12i#include <string.h>' -i wrudf/wrudf-cdr.c
|
|
|
|
sed -e '37i#include <stdlib.h>' -i wrudf/ide-pc.c
|
2020-01-25 18:45:54 +00:00
|
|
|
sed -e '46i#include <sys/sysmacros.h>' -i mkudffs/main.c
|
2018-08-27 09:15:23 +01:00
|
|
|
|
|
|
|
sed -e "s@\$(DESTDIR)/lib/udev/rules.d@$out/lib/udev/rules.d@" -i pktsetup/Makefile.am
|
|
|
|
'';
|
|
|
|
|
|
|
|
postFixup = ''
|
|
|
|
sed -i -e "s@/usr/sbin/pktsetup@$out/sbin/pktsetup@" $out/lib/udev/rules.d/80-pktsetup.rules
|
2015-04-03 15:36:56 +01:00
|
|
|
'';
|
2011-01-10 11:04:20 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2011-01-10 11:04:20 +00:00
|
|
|
description = "UDF tools";
|
2015-04-03 15:36:56 +01:00
|
|
|
maintainers = with maintainers; [ raskin ];
|
2015-11-25 22:04:57 +00:00
|
|
|
platforms = platforms.linux;
|
2015-04-03 15:36:56 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2011-01-10 11:04:20 +00:00
|
|
|
};
|
2015-04-03 15:36:56 +01:00
|
|
|
}
|