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

27 lines
576 B
Nix
Raw Normal View History

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