82 lines
1.3 KiB
Nix
82 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchzip,
|
|
which,
|
|
attr,
|
|
e2fsprogs,
|
|
curl,
|
|
libargon2,
|
|
librsync,
|
|
libthreadar,
|
|
gpgme,
|
|
libgcrypt,
|
|
openssl,
|
|
bzip2,
|
|
lz4,
|
|
lzo,
|
|
xz,
|
|
zlib,
|
|
zstd,
|
|
CoreFoundation,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "2.7.14";
|
|
pname = "dar";
|
|
|
|
src = fetchzip {
|
|
url = "mirror://sourceforge/dar/${pname}-${version}.tar.gz";
|
|
sha256 = "sha256-qesq+Rqo/llvQ7JPqYwLhObwZw2GlhXpYyc6NEA9c4M=";
|
|
};
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
nativeBuildInputs = [ which ];
|
|
|
|
buildInputs = [
|
|
curl
|
|
librsync
|
|
libthreadar
|
|
gpgme
|
|
libargon2
|
|
libgcrypt
|
|
openssl
|
|
bzip2
|
|
lz4
|
|
lzo
|
|
xz
|
|
zlib
|
|
zstd
|
|
] ++ lib.optionals stdenv.isLinux [
|
|
attr
|
|
e2fsprogs
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
CoreFoundation
|
|
];
|
|
|
|
configureFlags = [
|
|
"--disable-birthtime"
|
|
"--disable-upx"
|
|
"--disable-dar-static"
|
|
"--disable-build-html"
|
|
"--enable-threadar"
|
|
];
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
postInstall = ''
|
|
# Disable html help
|
|
rm -r "$out"/share/dar
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "http://dar.linux.free.fr";
|
|
description = "Disk ARchiver, allows backing up files into indexed archives";
|
|
maintainers = with maintainers; [ izorkin ];
|
|
license = licenses.gpl2Only;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|