mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 07:00:43 +00:00
18 lines
391 B
Nix
18 lines
391 B
Nix
{ stdenv, fetchurl, groff }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "mktemp-1.7";
|
|
|
|
# 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.7.tar.gz;
|
|
sha256 = "0x969152znxxjbj7387xb38waslr4yv6bnj5jmhb4rpqxphvk54f";
|
|
};
|
|
|
|
meta = {
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|