nixpkgs/pkgs/tools/misc/file/default.nix

10 lines
196 B
Nix
Raw Normal View History

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "file-4.13";
src = fetchurl {
url = ftp://ftp.astron.com/pub/file/file-4.13.tar.gz;
md5 = "2bfc0f878ee22e50441b68df2ccbb984";
};
}