summary refs log tree commit diff
path: root/pkgs/tools/security/mktemp/default.nix
blob: 001fa4f095359feb63e7cfc8453d52913f5d053e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{stdenv, fetchurl}:
  
stdenv.mkDerivation {
  name = "mktemp-1.6";
  
  src = fetchurl {
    url = ftp://ftp.mktemp.org/pub/mktemp/mktemp-1.6.tar.gz;
    sha256 = "1nfj89b0dv1c2fyqi1pg54fyzs3462cbp7jv7lskqsxvqy4mh9x1";
  };
  
}