nixpkgs/pkgs/tools/misc/file/default.nix
Eelco Dolstra b701827950 * Added the `file' utility (required by the MonoDevelop build process).
svn path=/nixpkgs/trunk/; revision=2355
2005-03-09 17:48:46 +00:00

10 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";
};
}