2018-07-20 19:02:00 -07:00
|
|
|
{ stdenv, fetchurl, file, zlib, libgnurx }:
|
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}";
|
2019-05-17 03:24:19 -07:00
|
|
|
version = "5.37";
|
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
|
|
|
];
|
2019-05-17 03:24:19 -07:00
|
|
|
sha256 = "0zz0p9bqnswfx0c16j8k62ivjq1m16x10xqv4hy9lcyxyxkkkhg9";
|
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;
|
2018-07-20 19:02:00 -07:00
|
|
|
buildInputs = [ zlib ]
|
|
|
|
++ stdenv.lib.optional stdenv.hostPlatform.isWindows libgnurx;
|
2017-03-15 14:01:39 -07:00
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
2018-07-20 19:02:00 -07:00
|
|
|
makeFlags = if stdenv.hostPlatform.isWindows then "FILE_COMPILE=file"
|
|
|
|
else null;
|
2017-03-15 14:01:39 -07:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2018-10-19 07:41:00 -07:00
|
|
|
homepage = https://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
|
|
|
};
|
|
|
|
}
|