tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
hashdeep: simplify platforms
Sandro Jäckel
5 years ago
473906dc
451ffcb2
+3
-2
1 changed file
expand all
collapse all
unified
split
pkgs
tools
security
hashdeep
default.nix
+3
-2
pkgs/tools/security/hashdeep/default.nix
···
17
17
description = "A set of cross-platform tools to compute hashes";
18
18
homepage = "https://github.com/jessek/hashdeep";
19
19
license = licenses.gpl2;
20
20
+
maintainers = [ maintainers.karantan ];
21
21
+
platforms = platforms.all;
20
22
# Build fails on Darwin:
21
23
# > ./xml.h:103:82: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
22
24
# > void xmlout(const std::string &tag,const int64_t value){ xmlprintf(tag,"","%"PRId64,value); }
23
23
-
platforms = with platforms; linux ++ freebsd ++ openbsd;
24
24
-
maintainers = [ maintainers.karantan ];
25
25
+
broken = stdenv.isDarwin;
25
26
};
26
27
}