forked from mirrors/nixpkgs
* Added the `file' utility (required by the MonoDevelop build process).
svn path=/nixpkgs/trunk/; revision=2355
This commit is contained in:
parent
317a2b5762
commit
b701827950
9
pkgs/tools/misc/file/default.nix
Normal file
9
pkgs/tools/misc/file/default.nix
Normal file
|
@ -0,0 +1,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";
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue