3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/misc/file/default.nix

39 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, fetchpatch, file, zlib, libgnurx }:
stdenv.mkDerivation rec {
pname = "file";
version = "5.37";
src = fetchurl {
urls = [
"ftp://ftp.astron.com/pub/file/${pname}-${version}.tar.gz"
"https://distfiles.macports.org/file/${pname}-${version}.tar.gz"
];
sha256 = "0zz0p9bqnswfx0c16j8k62ivjq1m16x10xqv4hy9lcyxyxkkkhg9";
};
patches = [
(fetchpatch {
name = "CVE-2019-18218.patch";
url = "https://sources.debian.org/data/main/f/file/1:5.37-6/debian/patches/cherry-pick.FILE5_37-67-g46a8443f.limit-the-number-of-elements-in-a-vector-found-by-oss-fuzz.patch";
sha256 = "1i22y91yndc3n2p2ngczp1lwil8l05sp8ciicil74xrc5f91y6mj";
})
];
nativeBuildInputs = stdenv.lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) file;
2018-07-21 03:02:00 +01:00
buildInputs = [ zlib ]
++ stdenv.lib.optional stdenv.hostPlatform.isWindows libgnurx;
2017-03-15 21:01:39 +00:00
doCheck = true;
2018-07-21 03:02:00 +01:00
makeFlags = if stdenv.hostPlatform.isWindows then "FILE_COMPILE=file"
else null;
2017-03-15 21:01:39 +00:00
meta = with stdenv.lib; {
2018-10-19 15:41:00 +01:00
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;
};
}