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

27 lines
576 B
Nix
Raw Normal View History

2013-02-16 22:17:18 +00:00
{ stdenv, fetchurl, zlib }:
stdenv.mkDerivation rec {
2017-03-15 21:01:39 +00:00
name = "file-${version}";
2017-06-11 16:35:29 +00:00
version = "5.31";
src = fetchurl {
urls = [
"ftp://ftp.astron.com/pub/file/${name}.tar.gz"
2017-03-15 21:01:39 +00:00
"https://distfiles.macports.org/file/${name}.tar.gz"
];
2017-06-11 16:35:29 +00:00
sha256 = "1vp4zihaxkhi85chkjgd4r4zdg4k2wa3c6pmajhbmx6gr7d8ii89";
};
2017-03-15 21:01:39 +00:00
buildInputs = [ zlib ];
doCheck = true;
meta = with stdenv.lib; {
homepage = "http://darwinsys.com/file";
2013-02-16 22:17:18 +00:00
description = "A program that shows the type of files";
2017-03-15 21:01:39 +00:00
license = licenses.bsd2;
platforms = platforms.all;
};
}