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

39 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, file, zlib, libgnurx, fetchpatch }:
stdenv.mkDerivation rec {
pname = "file";
2021-06-17 18:29:06 +01:00
version = "5.40";
src = fetchurl {
urls = [
"ftp://ftp.astron.com/pub/file/${pname}-${version}.tar.gz"
"https://distfiles.macports.org/file/${pname}-${version}.tar.gz"
];
2021-06-17 18:29:06 +01:00
sha256 = "0myxlpj9gy2diqavx33vq88kpvr1k1bpzsm0d0zmb2hl7ks22wqn";
};
2021-01-15 09:19:50 +00:00
nativeBuildInputs = lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) file;
2018-07-21 03:02:00 +01:00
buildInputs = [ zlib ]
2021-08-06 09:23:23 +01:00
++ lib.optional stdenv.hostPlatform.isWindows libgnurx;
2017-03-15 21:01:39 +00:00
patches = [
# Fix the mime type detection of xz file. Is merged in master.
(fetchpatch {
url = "https://github.com/file/file/commit/9b0459afab309a82aa4e46f73a4e50dd641f3d39.patch";
sha256 = "sha256-6vjyIn5gVbgmhUlfXJKFRVltm8YKATKmh0/X6+2lLnM=";
})
];
2017-03-15 21:01:39 +00:00
doCheck = true;
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-08-06 09:23:23 +01:00
maintainers = with maintainers; [ ];
2017-03-15 21:01:39 +00:00
license = licenses.bsd2;
platforms = platforms.all;
};
}