nixpkgs/pkgs/tools/misc/file/default.nix
Wouter den Breejen 033c61867b Version bump
svn path=/nixpkgs/trunk/; revision=12280
2008-07-06 17:47:10 +00:00

15 lines
354 B
Nix

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