2023-10-16 03:15:58 +00:00
|
|
|
{ lib, stdenv, fetchurl, file, zlib, libgnurx
|
|
|
|
, testers
|
|
|
|
}:
|
2012-11-21 15:20:36 +00:00
|
|
|
|
2022-05-29 19:36:10 +00:00
|
|
|
# Note: this package is used for bootstrapping fetchurl, and thus
|
|
|
|
# cannot use fetchpatch! All mutable patches (generated by GitHub or
|
|
|
|
# cgit) that are needed here should be included directly in Nixpkgs as
|
|
|
|
# files.
|
|
|
|
|
2023-10-16 03:15:58 +00:00
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "file";
|
2023-08-03 22:21:21 +00:00
|
|
|
version = "5.45";
|
2010-12-29 19:19:56 +00:00
|
|
|
|
2005-03-09 17:48:46 +00:00
|
|
|
src = fetchurl {
|
2015-06-25 14:12:01 +00:00
|
|
|
urls = [
|
2023-10-16 03:15:58 +00:00
|
|
|
"https://astron.com/pub/file/${finalAttrs.pname}-${finalAttrs.version}.tar.gz"
|
|
|
|
"https://distfiles.macports.org/file/${finalAttrs.pname}-${finalAttrs.version}.tar.gz"
|
2015-06-25 14:12:01 +00:00
|
|
|
];
|
2023-08-03 22:21:21 +00:00
|
|
|
hash = "sha256-/Jf1ECm7DiyfTjv/79r2ePDgOe6HK53lwAKm0Jx4TYI=";
|
2007-12-31 17:56:13 +00:00
|
|
|
};
|
|
|
|
|
2023-04-16 06:26:39 +00:00
|
|
|
outputs = [ "out" "dev" "man" ];
|
|
|
|
|
2023-02-09 10:33:18 +00:00
|
|
|
patches = [
|
2023-08-03 22:21:21 +00:00
|
|
|
# Upstream patch to fix 32-bit tests.
|
2023-08-05 08:09:08 +00:00
|
|
|
# Will be included in 5.46+ releases.
|
2023-08-03 22:21:21 +00:00
|
|
|
./32-bit-time_t.patch
|
2023-02-09 10:33:18 +00:00
|
|
|
];
|
|
|
|
|
2022-05-21 16:58:22 +00:00
|
|
|
strictDeps = true;
|
2022-05-14 01:13:49 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-15 09:19:50 +00:00
|
|
|
nativeBuildInputs = lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) file;
|
2018-07-21 02:02:00 +00:00
|
|
|
buildInputs = [ zlib ]
|
2021-08-06 08:23:23 +00:00
|
|
|
++ lib.optional stdenv.hostPlatform.isWindows libgnurx;
|
2017-03-15 21:01:39 +00:00
|
|
|
|
2022-09-18 17:47:20 +00:00
|
|
|
# https://bugs.astron.com/view.php?id=382
|
2022-10-29 06:46:11 +00:00
|
|
|
doCheck = !stdenv.buildPlatform.isMusl;
|
2017-03-15 21:01:39 +00:00
|
|
|
|
2021-01-15 09:19:50 +00:00
|
|
|
makeFlags = lib.optional stdenv.hostPlatform.isWindows "FILE_COMPILE=file";
|
2017-03-15 21:01:39 +00:00
|
|
|
|
2023-10-16 03:15:58 +00:00
|
|
|
passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://darwinsys.com/file";
|
2013-02-16 22:17:18 +00:00
|
|
|
description = "A program that shows the type of files";
|
2021-10-23 07:24:58 +00:00
|
|
|
maintainers = with maintainers; [ doronbehar ];
|
2017-03-15 21:01:39 +00:00
|
|
|
license = licenses.bsd2;
|
2023-10-16 03:15:58 +00:00
|
|
|
pkgConfigModules = [ "libmagic" ];
|
2017-03-15 21:01:39 +00:00
|
|
|
platforms = platforms.all;
|
2023-07-31 19:49:41 +00:00
|
|
|
mainProgram = "file";
|
2005-03-09 17:48:46 +00:00
|
|
|
};
|
2023-10-16 03:15:58 +00:00
|
|
|
})
|