2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchurl, file, zlib, libgnurx }:
|
2012-11-21 16:20:36 +01:00
|
|
|
|
2012-05-15 18:34:07 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "file";
|
2021-06-17 19:29:06 +02:00
|
|
|
version = "5.40";
|
2010-12-29 20:19:56 +01:00
|
|
|
|
2005-03-09 18:48:46 +01:00
|
|
|
src = fetchurl {
|
2015-06-25 16:12:01 +02:00
|
|
|
urls = [
|
2019-08-15 14:41:18 +02:00
|
|
|
"ftp://ftp.astron.com/pub/file/${pname}-${version}.tar.gz"
|
|
|
|
"https://distfiles.macports.org/file/${pname}-${version}.tar.gz"
|
2015-06-25 16:12:01 +02:00
|
|
|
];
|
2021-06-17 19:29:06 +02:00
|
|
|
sha256 = "0myxlpj9gy2diqavx33vq88kpvr1k1bpzsm0d0zmb2hl7ks22wqn";
|
2007-12-31 18:56:13 +01:00
|
|
|
};
|
|
|
|
|
2021-01-15 10:19:50 +01:00
|
|
|
nativeBuildInputs = lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) file;
|
2018-07-21 04:02:00 +02:00
|
|
|
buildInputs = [ zlib ]
|
2021-01-15 10:19:50 +01:00
|
|
|
++ lib.optional stdenv.hostPlatform.isWindows libgnurx;
|
2017-03-15 22:01:39 +01:00
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
2021-01-15 10:19:50 +01:00
|
|
|
makeFlags = lib.optional stdenv.hostPlatform.isWindows "FILE_COMPILE=file";
|
2017-03-15 22:01:39 +01:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://darwinsys.com/file";
|
2013-02-16 23:17:18 +01:00
|
|
|
description = "A program that shows the type of files";
|
2017-03-15 22:01:39 +01:00
|
|
|
license = licenses.bsd2;
|
|
|
|
platforms = platforms.all;
|
2005-03-09 18:48:46 +01:00
|
|
|
};
|
|
|
|
}
|