nixpkgs/pkgs/tools/misc/file/default.nix

18 lines
379 B
Nix
Raw Normal View History

2013-02-16 23:17:18 +01:00
{ stdenv, fetchurl, zlib }:
stdenv.mkDerivation rec {
2013-06-29 17:03:45 +02:00
name = "file-5.14";
buildInputs = [ zlib ];
src = fetchurl {
url = "ftp://ftp.astron.com/pub/file/${name}.tar.gz";
2013-06-29 17:03:45 +02:00
sha256 = "1r3zqxr7al5yy2595hd9hxwc14iij021p46d5my3n2lhs0fs06s6";
};
meta = {
homepage = "http://darwinsys.com/file";
2013-02-16 23:17:18 +01:00
description = "A program that shows the type of files";
};
}