{ lib, stdenv, fetchurl, buildPackages, zlib, libgnurx, updateAutotoolsGnuConfigScriptsHook, testers, }: # 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. stdenv.mkDerivation (finalAttrs: { pname = "file"; version = "5.47"; src = fetchurl { urls = [ "https://astron.com/pub/file/file-${finalAttrs.version}.tar.gz" "https://distfiles.macports.org/file/file-${finalAttrs.version}.tar.gz" ]; hash = "sha256-RWcv7BZctMwTWKLXa11X0ih23Ll6sWlCesOFy+HVWXo="; }; outputs = [ "out" "dev" "man" ]; patches = [ # Fixes `cat archive.zip | file -` just showing a generic "data" type. See: # - https://bugs.astron.com/view.php?id=764 # - https://github.com/file/file/commit/12b76648185104ce9118d8b5fa57aa34a77ad084 # Vendored patch because using fetchpatch is impossible for a package in # this part of the bootstrap chain. ./0001-PR-745-streamout-Don-t-flush-when-trying-to-set-nega.patch # Fixes breakage of python3Packages.python-magic and xdg-utils ./0002-PR-725-inliniac-Revert-previous-and-always-set-offse.patch ]; strictDeps = true; enableParallelBuilding = true; nativeBuildInputs = [ updateAutotoolsGnuConfigScriptsHook ]; buildInputs = [ zlib ] ++ lib.optional stdenv.hostPlatform.isMinGW libgnurx; # https://bugs.astron.com/view.php?id=382 doCheck = !stdenv.buildPlatform.isMusl; # In native builds, it will use the newly-compiled file instead. makeFlags = lib.optional ( !lib.systems.equals stdenv.hostPlatform stdenv.buildPlatform ) "FILE_COMPILE=${lib.getExe buildPackages.file}"; passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; meta = { homepage = "https://darwinsys.com/file"; description = "Program that shows the type of files"; maintainers = with lib.maintainers; [ doronbehar ]; license = lib.licenses.bsd2; pkgConfigModules = [ "libmagic" ]; platforms = lib.platforms.all; mainProgram = "file"; }; })