2013-02-16 22:17:18 +00:00
|
|
|
{ stdenv, fetchurl, zlib }:
|
2012-11-21 15:20:36 +00:00
|
|
|
|
2012-05-15 17:34:07 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2016-06-20 17:23:39 +01:00
|
|
|
name = "file-5.28";
|
2012-05-15 17:34:07 +01:00
|
|
|
|
|
|
|
buildInputs = [ zlib ];
|
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 = [
|
|
|
|
"ftp://ftp.astron.com/pub/file/${name}.tar.gz"
|
|
|
|
"http://distfiles.macports.org/file/${name}.tar.gz"
|
|
|
|
];
|
2016-06-20 17:23:39 +01:00
|
|
|
sha256 = "04p0w9ggqq6cqvwhyni0flji1z0rwrz896hmhkxd2mc6dca5xjqf";
|
2007-12-31 17:56:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
2012-05-15 17:34:07 +01:00
|
|
|
homepage = "http://darwinsys.com/file";
|
2013-02-16 22:17:18 +00:00
|
|
|
description = "A program that shows the type of files";
|
2015-02-04 20:41:14 +00:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2005-03-09 17:48:46 +00:00
|
|
|
};
|
|
|
|
}
|