b701827950
svn path=/nixpkgs/trunk/; revision=2355
9 lines
196 B
Nix
9 lines
196 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "file-4.13";
|
|
src = fetchurl {
|
|
url = ftp://ftp.astron.com/pub/file/file-4.13.tar.gz;
|
|
md5 = "2bfc0f878ee22e50441b68df2ccbb984";
|
|
};
|
|
}
|