2013-02-16 14:17:18 -08:00
|
|
|
{ stdenv, fetchurl, zlib }:
|
2012-11-21 07:20:36 -08:00
|
|
|
|
2012-05-15 09:34:07 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2015-07-10 10:58:15 -07:00
|
|
|
name = "file-5.24";
|
2012-05-15 09:34:07 -07:00
|
|
|
|
|
|
|
buildInputs = [ zlib ];
|
2010-12-29 11:19:56 -08:00
|
|
|
|
2005-03-09 09:48:46 -08:00
|
|
|
src = fetchurl {
|
2015-06-25 07:12:01 -07:00
|
|
|
urls = [
|
|
|
|
"ftp://ftp.astron.com/pub/file/${name}.tar.gz"
|
|
|
|
"http://distfiles.macports.org/file/${name}.tar.gz"
|
|
|
|
];
|
2015-07-13 16:11:23 -07:00
|
|
|
sha256 = "1kjhqwmi1sjw8jcf6li725c59wm00zajrdfwgkwqxs295vgb6b40";
|
2007-12-31 09:56:13 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
2012-05-15 09:34:07 -07:00
|
|
|
homepage = "http://darwinsys.com/file";
|
2013-02-16 14:17:18 -08:00
|
|
|
description = "A program that shows the type of files";
|
2015-02-04 12:41:14 -08:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2005-03-09 09:48:46 -08:00
|
|
|
};
|
|
|
|
}
|