File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -15,8 +15,11 @@ stdenv.mkDerivation rec {
15
15
extraPostFetch = "rm -r $out/testdir" ;
16
16
} ;
17
17
18
+ dontConfigure = true ;
19
+
18
20
makeFlags = [
19
21
"PREFIX=${ placeholder "out" } "
22
+ "HARDEN=1"
20
23
] ++ stdenv . lib . optionals stdenv . isLinux [
21
24
"ENABLE_DEDUPE=1"
22
25
"STATIC_DEDUPE_H=1"
@@ -27,7 +30,7 @@ stdenv.mkDerivation rec {
27
30
doCheck = false ; # broken Makefile, the above also removes tests
28
31
29
32
postInstall = ''
30
- install -Dm644 -t $out/share/doc/jdupes CHANGES LICENSE README.md
33
+ install -Dm444 -t $out/share/doc/jdupes CHANGES LICENSE README.md
31
34
'' ;
32
35
33
36
meta = with stdenv . lib ; {
@@ -40,6 +43,5 @@ stdenv.mkDerivation rec {
40
43
homepage = "https://github.com/jbruchon/jdupes" ;
41
44
license = licenses . mit ;
42
45
maintainers = with maintainers ; [ romildo ] ;
43
- platforms = platforms . all ;
44
46
} ;
45
47
}
You can’t perform that action at this time.
0 commit comments