summary refs log tree commit diff
path: root/pkgs/tools/security/mktemp/default.nix
blob: 8b2a60fd7657a5c877ce4d39ee18a8881c6d886d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ 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;
  };
}