nixpkgs/pkgs/tools/misc/file/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

53 lines
1.7 KiB
Nix
Raw Normal View History

2021-10-21 06:39:53 +00:00
{ lib, stdenv, fetchurl, file, zlib, libgnurx }:
# 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 rec {
pname = "file";
2023-01-22 01:53:29 +00:00
version = "5.44";
src = fetchurl {
urls = [
2022-06-12 11:21:30 +00:00
"https://astron.com/pub/file/${pname}-${version}.tar.gz"
"https://distfiles.macports.org/file/${pname}-${version}.tar.gz"
];
2023-01-22 01:53:29 +00:00
sha256 = "sha256-N1HH+6jbyDHLjXzIr/IQNUWbjOUVXviwiAon0ChHXzs=";
};
patches = [
# Backport fix to identification for pyzip files.
# Needed for strip-nondeterminism.
# https://salsa.debian.org/reproducible-builds/strip-nondeterminism/-/issues/20
./pyzip.patch
2023-02-14 17:18:50 +00:00
# Backport fix for --uncompress always detecting contents as "empty"
(fetchurl {
url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/sys-apps/file/files/file-5.44-decompress-empty.patch?h=dfc57da515a2aaf085bea68267cc727f1bfaa691";
hash = "sha256-fUzRQAlLWczBmR5iA1Gk66mHjP40MJcMdgCtm2+u1SQ=";
})
];
strictDeps = true;
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
# https://bugs.astron.com/view.php?id=382
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
meta = with lib; {
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;
platforms = platforms.all;
};
}