e0464e4788
In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ```
83 lines
1.3 KiB
Nix
83 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.15";
|
|
pname = "dar";
|
|
|
|
src = fetchzip {
|
|
url = "mirror://sourceforge/dar/${pname}-${version}.tar.gz";
|
|
sha256 = "sha256-2CuPqb17E2bHBuwRPA0QoIeTUq/lJZ3pFKbtqsRPktk=";
|
|
};
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
nativeBuildInputs = [ which ];
|
|
|
|
buildInputs = [
|
|
curl
|
|
librsync
|
|
libthreadar
|
|
gpgme
|
|
libargon2
|
|
libgcrypt
|
|
openssl
|
|
bzip2
|
|
lz4
|
|
lzo
|
|
xz
|
|
zlib
|
|
zstd
|
|
] ++ lib.optionals stdenv.hostPlatform.isLinux [
|
|
attr
|
|
e2fsprogs
|
|
] ++ lib.optionals stdenv.hostPlatform.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;
|
|
};
|
|
}
|