2018-01-23 09:47:10 -08:00
|
|
|
{ stdenv, fetchurl, file, zlib }:
|
2012-11-21 07:20:36 -08:00
|
|
|
|
2012-05-15 09:34:07 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2017-03-15 14:01:39 -07:00
|
|
|
name = "file-${version}";
|
2017-09-05 11:21:08 -07:00
|
|
|
version = "5.32";
|
2010-12-29 11:19:56 -08:00
|
|
|
|
2005-03-09 09:48:46 -08:00
|
|
|
src = fetchurl {
|
2015-06-25 07:12:01 -07:00
|
|
|
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"
|
2015-06-25 07:12:01 -07:00
|
|
|
];
|
2017-09-05 11:21:08 -07:00
|
|
|
sha256 = "0l1bfa0icng9vdwya00ff48fhvjazi5610ylbhl35qi13d6xqfc6";
|
2007-12-31 09:56:13 -08:00
|
|
|
};
|
|
|
|
|
2018-01-23 09:47:10 -08:00
|
|
|
nativeBuildInputs = stdenv.lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) file;
|
2017-03-15 14:01:39 -07:00
|
|
|
buildInputs = [ zlib ];
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2017-08-01 13:03:30 -07:00
|
|
|
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;
|
2005-03-09 09:48:46 -08:00
|
|
|
};
|
|
|
|
}
|