2019-12-22 04:05:05 +00:00
|
|
|
{ stdenv, fetchurl, file, zlib, libgnurx }:
|
2012-11-21 15:20:36 +00:00
|
|
|
|
2012-05-15 17:34:07 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "file";
|
2020-06-15 23:01:48 +01:00
|
|
|
version = "5.39";
|
2010-12-29 19:19:56 +00:00
|
|
|
|
2005-03-09 17:48:46 +00:00
|
|
|
src = fetchurl {
|
2015-06-25 15:12:01 +01:00
|
|
|
urls = [
|
2019-08-15 13:41:18 +01:00
|
|
|
"ftp://ftp.astron.com/pub/file/${pname}-${version}.tar.gz"
|
|
|
|
"https://distfiles.macports.org/file/${pname}-${version}.tar.gz"
|
2015-06-25 15:12:01 +01:00
|
|
|
];
|
2020-06-15 23:01:48 +01:00
|
|
|
sha256 = "1lgs2w2sgamzf27kz5h7pajz7v62554q21fbs11n4mfrfrm2hpgh";
|
2007-12-31 17:56:13 +00:00
|
|
|
};
|
|
|
|
|
2020-06-28 10:12:52 +01:00
|
|
|
patches = [
|
|
|
|
# https://github.com/file/file/commit/85b7ab83257b3191a1a7ca044589a092bcef2bb3
|
|
|
|
# Without the RCS id change to avoid conflicts. Remove on next bump.
|
|
|
|
./webassembly-format-fix.patch
|
|
|
|
];
|
|
|
|
|
2018-01-23 17:47:10 +00:00
|
|
|
nativeBuildInputs = stdenv.lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) file;
|
2018-07-21 03:02:00 +01:00
|
|
|
buildInputs = [ zlib ]
|
|
|
|
++ stdenv.lib.optional stdenv.hostPlatform.isWindows libgnurx;
|
2017-03-15 21:01:39 +00:00
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
2019-10-26 14:35:48 +01:00
|
|
|
makeFlags = stdenv.lib.optional stdenv.hostPlatform.isWindows "FILE_COMPILE=file";
|
2017-03-15 21:01:39 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://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;
|
2005-03-09 17:48:46 +00:00
|
|
|
};
|
|
|
|
}
|