aff1f4ab94
The following parameters are now available: * hardeningDisable To disable specific hardening flags * hardeningEnable To enable specific hardening flags Only the cc-wrapper supports this right now, but these may be reused by other wrappers, builders or setup hooks. cc-wrapper supports the following flags: * fortify * stackprotector * pie (disabled by default) * pic * strictoverflow * format * relro * bindnow
16 lines
399 B
Nix
16 lines
399 B
Nix
{stdenv, fetchurl, pkgconfig, gtk, gettext, libxml2 }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "libgtkhtml-2.11.1";
|
|
|
|
src = fetchurl {
|
|
url = mirror://gnome/sources/libgtkhtml/2.11/libgtkhtml-2.11.1.tar.bz2;
|
|
sha256 = "0msajafd42545dxzyr5zqka990cjrxw2yz09ajv4zs8m1w6pm9rw";
|
|
};
|
|
|
|
buildInputs = [ pkgconfig gtk gettext ];
|
|
propagatedBuildInputs = [ libxml2 ];
|
|
|
|
hardeningDisable = [ "format" ];
|
|
}
|