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

30 lines
860 B
Nix
Raw Normal View History

2019-12-22 04:05:05 +00:00
{ stdenv, fetchurl, file, zlib, libgnurx }:
stdenv.mkDerivation rec {
pname = "file";
2019-12-22 04:05:05 +00:00
version = "5.38";
src = fetchurl {
urls = [
"ftp://ftp.astron.com/pub/file/${pname}-${version}.tar.gz"
"https://distfiles.macports.org/file/${pname}-${version}.tar.gz"
];
2019-12-22 04:05:05 +00:00
sha256 = "0d7s376b4xqymnrsjxi3nsv3f5v89pzfspzml2pcajdk5by2yg2r";
};
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;
2019-10-26 14:35:48 +01:00
makeFlags = stdenv.lib.optional stdenv.hostPlatform.isWindows "FILE_COMPILE=file";
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;
};
}