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" ```
57 lines
1.5 KiB
Nix
57 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitea,
|
|
libjodycode,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "jdupes";
|
|
version = "1.28.0";
|
|
|
|
src = fetchFromGitea {
|
|
domain = "codeberg.org";
|
|
owner = "jbruchon";
|
|
repo = "jdupes";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-jRjVuN/FNDpKB+Ibi+Mkm+WhB16cz9c33dOOeiPdgr8=";
|
|
# Unicode file names lead to different checksums on HFS+ vs. other
|
|
# filesystems because of unicode normalisation. The testdir
|
|
# directories have such files and will be removed.
|
|
postFetch = "rm -r $out/testdir";
|
|
};
|
|
|
|
buildInputs = [ libjodycode ];
|
|
|
|
dontConfigure = true;
|
|
|
|
makeFlags =
|
|
[ "PREFIX=${placeholder "out"}" ]
|
|
++ lib.optionals stdenv.hostPlatform.isLinux [
|
|
"ENABLE_DEDUPE=1"
|
|
"STATIC_DEDUPE_H=1"
|
|
]
|
|
++ lib.optionals stdenv.cc.isGNU [ "HARDEN=1" ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
doCheck = false; # broken Makefile, the above also removes tests
|
|
|
|
postInstall = ''
|
|
install -Dm444 -t $out/share/doc/jdupes CHANGES.txt LICENSE.txt README.md
|
|
'';
|
|
|
|
meta = {
|
|
description = "Powerful duplicate file finder and an enhanced fork of 'fdupes'";
|
|
longDescription = ''
|
|
jdupes is a program for identifying and taking actions upon
|
|
duplicate files. This fork known as 'jdupes' is heavily modified
|
|
from and improved over the original.
|
|
'';
|
|
homepage = "https://codeberg.org/jbruchon/jdupes";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ ];
|
|
mainProgram = "jdupes";
|
|
};
|
|
})
|