nixpkgs/pkgs/tools/archivers/xarchive/default.nix
Franz Pletz aff1f4ab94 Use general hardening flag toggle lists
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
2016-03-05 18:55:26 +01:00

23 lines
574 B
Nix

{ stdenv, fetchurl, gtk2, pkgconfig }:
stdenv.mkDerivation rec {
version = "0.2.8-6";
name = "xarchive-${version}";
src = fetchurl {
url = "mirror://sourceforge/xarchive/${name}.tar.gz";
sha256 = "0chfim7z27s00naf43a61zsngwhvim14mg1p3csbv5i3f6m50xx4";
};
buildInputs = [ gtk2 pkgconfig ];
hardeningDisable = [ "format" ];
meta = {
description = "A GTK+ front-end for command line archiving tools";
maintainers = [ stdenv.lib.maintainers.iElectric ];
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.all;
};
}