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

31 lines
857 B
Nix
Raw Normal View History

2018-07-21 02:02:00 +00:00
{ stdenv, fetchurl, file, zlib, libgnurx }:
stdenv.mkDerivation rec {
2017-03-15 21:01:39 +00:00
name = "file-${version}";
version = "5.34";
src = fetchurl {
urls = [
"ftp://ftp.astron.com/pub/file/${name}.tar.gz"
2017-03-15 21:01:39 +00:00
"https://distfiles.macports.org/file/${name}.tar.gz"
];
sha256 = "02mj4g34l13facacsc0ff8rchbh93ccqw7hns45yqgx8pzdm0npi";
};
nativeBuildInputs = stdenv.lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) file;
2018-07-21 02:02:00 +00:00
buildInputs = [ zlib ]
++ stdenv.lib.optional stdenv.hostPlatform.isWindows libgnurx;
2017-03-15 21:01:39 +00:00
doCheck = true;
2018-07-21 02:02:00 +00:00
makeFlags = if stdenv.hostPlatform.isWindows then "FILE_COMPILE=file"
else null;
2017-03-15 21:01:39 +00:00
meta = with stdenv.lib; {
homepage = http://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;
};
}