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