nixpkgs/pkgs/tools/misc/file/default.nix
Eelco Dolstra a1e444b3b0 * file updated to 5.04.
svn path=/nixpkgs/trunk/; revision=25324
2010-12-30 18:31:27 +00:00

16 lines
343 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "file-5.04";
src = fetchurl {
url = ftp://ftp.astron.com/pub/file/file-5.04.tar.gz;
sha256 = "0316lj3jxmp2g8azv0iykmmwjsnjanq93bklccwb6k77jiwnx7jc";
};
meta = {
description = "A program that shows the type of files";
homepage = ftp://ftp.astron.com/pub/file;
};
}