about summary refs log tree commit diff
path: root/pkgs/tools/misc/file/default.nix
blob: f7ada98ab491e597bc09bf5e8bfe4285a63b5a9b (plain) (blame)
1
2
3
4
5
6
7
8
9
{stdenv, fetchurl}:
 
stdenv.mkDerivation {
  name = "file-4.13";
  src = fetchurl {
    url = ftp://ftp.astron.com/pub/file/file-4.13.tar.gz;
    md5 = "2bfc0f878ee22e50441b68df2ccbb984";
  };
}