2021-10-21 07:39:53 +01:00
|
|
|
{ lib, stdenv, fetchurl, file, zlib, libgnurx }:
|
2012-11-21 15:20:36 +00:00
|
|
|
|
2012-05-15 17:34:07 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "file";
|
2021-10-21 07:39:53 +01:00
|
|
|
version = "5.41";
|
2010-12-29 19:19:56 +00:00
|
|
|
|
2005-03-09 17:48:46 +00:00
|
|
|
src = fetchurl {
|
2015-06-25 15:12:01 +01:00
|
|
|
urls = [
|
2019-08-15 13:41:18 +01:00
|
|
|
"ftp://ftp.astron.com/pub/file/${pname}-${version}.tar.gz"
|
|
|
|
"https://distfiles.macports.org/file/${pname}-${version}.tar.gz"
|
2015-06-25 15:12:01 +01:00
|
|
|
];
|
2021-10-21 07:39:53 +01:00
|
|
|
sha256 = "sha256-E+Uyx7Nk99V+I9/uoxRxAxUMuQWTpXr4bBDk9uQRYD8=";
|
2007-12-31 17:56:13 +00:00
|
|
|
};
|
|
|
|
|
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
|
|
|
|
|
|
|
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
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://darwinsys.com/file";
|
2013-02-16 22:17:18 +00:00
|
|
|
description = "A program that shows the type of files";
|
2021-10-23 08:24:58 +01:00
|
|
|
maintainers = with maintainers; [ doronbehar ];
|
2017-03-15 21:01:39 +00:00
|
|
|
license = licenses.bsd2;
|
|
|
|
platforms = platforms.all;
|
2005-03-09 17:48:46 +00:00
|
|
|
};
|
|
|
|
}
|