mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-08 14:40:07 +03:00
Merge pull request #87722 from NixOS/f/jdupes
jdupes: build with additional hardening
This commit is contained in:
commit
a5b42d64ad
@ -15,8 +15,11 @@ stdenv.mkDerivation rec {
|
||||
extraPostFetch = "rm -r $out/testdir";
|
||||
};
|
||||
|
||||
dontConfigure = true;
|
||||
|
||||
makeFlags = [
|
||||
"PREFIX=${placeholder "out"}"
|
||||
"HARDEN=1"
|
||||
] ++ stdenv.lib.optionals stdenv.isLinux [
|
||||
"ENABLE_DEDUPE=1"
|
||||
"STATIC_DEDUPE_H=1"
|
||||
@ -27,7 +30,7 @@ stdenv.mkDerivation rec {
|
||||
doCheck = false; # broken Makefile, the above also removes tests
|
||||
|
||||
postInstall = ''
|
||||
install -Dm644 -t $out/share/doc/jdupes CHANGES LICENSE README.md
|
||||
install -Dm444 -t $out/share/doc/jdupes CHANGES LICENSE README.md
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
@ -40,6 +43,5 @@ stdenv.mkDerivation rec {
|
||||
homepage = "https://github.com/jbruchon/jdupes";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ romildo ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user