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