nixpkgs/pkgs/tools/misc/uucp/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

31 lines
844 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "uucp-1.07";
src = fetchurl {
url = "mirror://gnu/uucp/${name}.tar.gz";
sha256 = "0b5nhl9vvif1w3wdipjsk8ckw49jj1w85xw1mmqi3zbcpazia306";
};
hardeningDisable = [ "format" ];
meta = {
description = "Unix-unix cp over serial line, also includes cu program";
longDescription =
'' Taylor UUCP is a free implementation of UUCP and is the standard
UUCP used on the GNU system. If you don't know what UUCP is chances
are, nowadays, that you won't need it. If you do need it, you've
just found one of the finest UUCP implementations available.
'';
homepage = http://www.gnu.org/software/uucp/uucp.html;
license = stdenv.lib.licenses.gpl2Plus;
platforms = stdenv.lib.platforms.all;
maintainers = [ ];
};
}