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

27 lines
574 B
Nix
Raw Normal View History

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