2015-12-27 05:33:35 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gettext, which
|
2014-09-08 02:29:56 +01:00
|
|
|
, glib, gtk2
|
2015-04-27 22:50:56 +01:00
|
|
|
, enableSoftening ? true
|
2014-09-08 02:29:56 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "dvdisaster";
|
2016-01-24 19:31:44 +00:00
|
|
|
version = "0.79.5";
|
2014-09-08 02:29:56 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "http://dvdisaster.net/downloads/${pname}-${version}.tar.bz2";
|
2015-12-27 05:33:35 +00:00
|
|
|
sha256 = "0f8gjnia2fxcbmhl8b3qkr5b7idl8m855dw7xw2fnmbqwvcm6k4w";
|
2014-09-08 02:29:56 +01:00
|
|
|
};
|
|
|
|
|
2015-12-27 05:33:35 +00:00
|
|
|
nativeBuildInputs = [ gettext pkgconfig which ];
|
|
|
|
buildInputs = [ glib gtk2 ];
|
|
|
|
|
2015-04-27 22:50:56 +01:00
|
|
|
patches = stdenv.lib.optional enableSoftening [
|
|
|
|
./encryption.patch
|
|
|
|
./dvdrom.patch
|
|
|
|
];
|
|
|
|
|
2015-01-08 09:26:49 +00:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs ./
|
2015-04-27 22:51:46 +01:00
|
|
|
sed -i 's/dvdisaster48.png/dvdisaster/' contrib/dvdisaster.desktop
|
2017-01-19 16:06:51 +00:00
|
|
|
substituteInPlace scripts/bash-based-configure \
|
|
|
|
--replace 'if (make -v | grep "GNU Make") > /dev/null 2>&1 ;' \
|
|
|
|
'if make -v | grep "GNU Make" > /dev/null 2>&1 ;'
|
2015-01-08 09:26:49 +00:00
|
|
|
'';
|
|
|
|
|
2015-12-27 05:33:35 +00:00
|
|
|
configureFlags = [
|
|
|
|
# Explicit --docdir= is required for on-line help to work:
|
2017-03-07 11:07:29 +00:00
|
|
|
"--docdir=share/doc"
|
2015-12-27 05:33:35 +00:00
|
|
|
"--with-nls=yes"
|
|
|
|
"--with-embedded-src-path=no"
|
2018-03-09 23:31:42 +00:00
|
|
|
] ++ stdenv.lib.optional (stdenv.hostPlatform.isx86_64) "--with-sse2=yes";
|
2015-02-22 15:05:43 +00:00
|
|
|
|
2016-03-29 09:53:36 +01:00
|
|
|
# fatal error: inlined-icons.h: No such file or directory
|
|
|
|
enableParallelBuilding = false;
|
2015-12-27 05:36:30 +00:00
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
checkPhase = ''
|
|
|
|
pushd regtest
|
|
|
|
|
|
|
|
mkdir -p "$TMP"/{log,regtest}
|
|
|
|
substituteInPlace common.bash \
|
|
|
|
--replace /dev/shm "$TMP/log" \
|
|
|
|
--replace /var/tmp "$TMP"
|
|
|
|
|
|
|
|
for test in *.bash; do
|
|
|
|
case "$test" in
|
|
|
|
common.bash)
|
|
|
|
echo "Skipping $test"
|
|
|
|
continue ;;
|
|
|
|
*)
|
|
|
|
echo "Running $test"
|
|
|
|
./"$test"
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
popd
|
|
|
|
'';
|
2014-09-08 02:29:56 +01:00
|
|
|
|
2015-04-27 22:51:46 +01:00
|
|
|
postInstall = ''
|
|
|
|
mkdir -pv $out/share/applications
|
|
|
|
cp contrib/dvdisaster.desktop $out/share/applications/
|
|
|
|
|
|
|
|
for size in 16 24 32 48 64; do
|
|
|
|
mkdir -pv $out/share/icons/hicolor/"$size"x"$size"/apps/
|
2015-12-27 05:33:35 +00:00
|
|
|
cp contrib/dvdisaster"$size".png \
|
|
|
|
$out/share/icons/hicolor/"$size"x"$size"/apps/dvdisaster.png
|
2015-04-27 22:51:46 +01:00
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2015-04-27 22:50:56 +01:00
|
|
|
meta = with stdenv.lib; {
|
2014-09-08 02:29:56 +01:00
|
|
|
homepage = http://dvdisaster.net/;
|
2015-04-30 11:08:54 +01:00
|
|
|
description = "Data loss/scratch/aging protection for CD/DVD media";
|
2015-04-27 22:50:56 +01:00
|
|
|
longDescription = ''
|
2015-04-30 11:08:54 +01:00
|
|
|
Dvdisaster provides a margin of safety against data loss on CD and
|
2015-04-27 22:50:56 +01:00
|
|
|
DVD media caused by scratches or aging media. It creates error correction
|
|
|
|
data which is used to recover unreadable sectors if the disc becomes
|
|
|
|
damaged at a later time.
|
|
|
|
'';
|
2015-12-27 05:33:35 +00:00
|
|
|
license = licenses.gpl3Plus;
|
2015-04-27 22:50:56 +01:00
|
|
|
platforms = platforms.linux;
|
2019-03-12 22:45:33 +00:00
|
|
|
maintainers = with maintainers; [ ];
|
2014-09-08 02:29:56 +01:00
|
|
|
};
|
|
|
|
}
|