nixpkgs/pkgs/development/libraries/cgui/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

28 lines
620 B
Nix

{ stdenv, fetchurl, texinfo, allegro, perl }:
stdenv.mkDerivation rec {
name = "cgui-${version}";
version="2.0.3";
src = fetchurl {
url = "mirror://sourceforge/project/cgui/${version}/${name}.tar.gz";
sha256 = "00kk4xaw68m44awy8zq4g5plx372swwccvzshn68a0a8f3f2wi4x";
};
buildInputs = [ texinfo allegro perl ];
configurePhase = ''
sh fix.sh unix
'';
hardeningDisable = [ "format" ];
makeFlags = [ "SYSTEM_DIR=$(out)" ];
meta = with stdenv.lib; {
description = "A multiplatform basic GUI library";
maintainers = [ maintainers.raskin ];
platforms = platforms.linux;
};
}