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

36 lines
1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, file, zlib, libgnurx }:
stdenv.mkDerivation rec {
pname = "file";
2020-06-15 22:01:48 +00:00
version = "5.39";
src = fetchurl {
urls = [
"ftp://ftp.astron.com/pub/file/${pname}-${version}.tar.gz"
"https://distfiles.macports.org/file/${pname}-${version}.tar.gz"
];
2020-06-15 22:01:48 +00:00
sha256 = "1lgs2w2sgamzf27kz5h7pajz7v62554q21fbs11n4mfrfrm2hpgh";
};
patches = [
# https://github.com/file/file/commit/85b7ab83257b3191a1a7ca044589a092bcef2bb3
# Without the RCS id change to avoid conflicts. Remove on next bump.
./webassembly-format-fix.patch
];
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-01-15 09:19:50 +00:00
++ lib.optional stdenv.hostPlatform.isWindows libgnurx;
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";
2017-03-15 21:01:39 +00:00
license = licenses.bsd2;
platforms = platforms.all;
};
}