2018-01-23 18:47:10 +01:00
|
|
|
{ stdenv, fetchurl, file, zlib }:
|
2012-11-21 16:20:36 +01:00
|
|
|
|
2012-05-15 18:34:07 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2017-03-15 22:01:39 +01:00
|
|
|
name = "file-${version}";
|
2017-09-05 20:21:08 +02:00
|
|
|
version = "5.32";
|
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 = [
|
|
|
|
"ftp://ftp.astron.com/pub/file/${name}.tar.gz"
|
2017-03-15 22:01:39 +01:00
|
|
|
"https://distfiles.macports.org/file/${name}.tar.gz"
|
2015-06-25 16:12:01 +02:00
|
|
|
];
|
2017-09-05 20:21:08 +02:00
|
|
|
sha256 = "0l1bfa0icng9vdwya00ff48fhvjazi5610ylbhl35qi13d6xqfc6";
|
2007-12-31 18:56:13 +01:00
|
|
|
};
|
|
|
|
|
2018-01-23 18:47:10 +01:00
|
|
|
nativeBuildInputs = stdenv.lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) file;
|
2017-03-15 22:01:39 +01:00
|
|
|
buildInputs = [ zlib ];
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2017-08-01 22:03:30 +02:00
|
|
|
homepage = http://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
|
|
|
};
|
|
|
|
}
|