nixpkgs/pkgs/tools/security/mktemp/default.nix
Tuomas Tynkkynen 2258b21e4b treewide: Add lots of platforms to packages with no meta
Build-tested on x86_64 Linux and on Darwin.
2016-08-02 21:17:44 +03:00

18 lines
393 B
Nix

{ stdenv, fetchurl, groff }:
stdenv.mkDerivation {
name = "mktemp-1.6";
# Have `configure' avoid `/usr/bin/nroff' in non-chroot builds.
NROFF = "${groff}/bin/nroff";
src = fetchurl {
url = ftp://ftp.mktemp.org/pub/mktemp/mktemp-1.6.tar.gz;
sha256 = "1nfj89b0dv1c2fyqi1pg54fyzs3462cbp7jv7lskqsxvqy4mh9x1";
};
meta = {
platforms = stdenv.lib.platforms.unix;
};
}