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 {
|
2015-09-22 22:29:47 +01:00
|
|
|
name = "file-5.25";
|
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"
|
|
|
|
];
|
2015-09-22 22:29:47 +01:00
|
|
|
sha256 = "1jhfi5mivdnqvry5la5q919l503ahwdwbf3hjhiv97znccakhd9p";
|
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
|
|
|
};
|
|
|
|
}
|