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
23 lines
676 B
Nix
23 lines
676 B
Nix
{ stdenv, fetchurl, libtiff }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "libgeotiff-1.2.5";
|
|
|
|
src = fetchurl {
|
|
url = ftp://ftp.remotesensing.org/pub/geotiff/libgeotiff/libgeotiff-1.2.5.tar.gz;
|
|
sha256 = "0z2yx77pm0zs81hc0b4lwzdd5s0rxcbylnscgq80b649src1fyzj";
|
|
};
|
|
|
|
buildInputs = [ libtiff ];
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
meta = {
|
|
description = "Library implementing attempt to create a tiff based interchange format for georeferenced raster imagery";
|
|
homepage = http://www.remotesensing.org/geotiff/geotiff.html;
|
|
license = stdenv.lib.licenses.mit;
|
|
maintainers = [stdenv.lib.maintainers.marcweber];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|