summary refs log tree commit diff
path: root/pkgs/tools/misc/file/default.nix
blob: bfdd60626d60c18e9250753ec6bf914813674188 (plain) (blame)
1
2
3
4
5
6
7
8
9
{stdenv, fetchurl}:
 
stdenv.mkDerivation {
  name = "file-4.17";
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/file-4.17.tar.gz;
    md5 = "50919c65e0181423d66bb25d7fe7b0fd";
  };
}