nixpkgs-suyu/pkgs/tools/misc/file/default.nix

22 lines
494 B
Nix
Raw Normal View History

2013-02-16 23:17:18 +01:00
{ stdenv, fetchurl, zlib }:
stdenv.mkDerivation rec {
2015-06-19 08:33:29 +02:00
name = "file-5.23";
buildInputs = [ zlib ];
src = fetchurl {
urls = [
"ftp://ftp.astron.com/pub/file/${name}.tar.gz"
"http://distfiles.macports.org/file/${name}.tar.gz"
];
2015-06-19 08:33:29 +02:00
sha256 = "0z0mwqayrrf3w734rjp9rysf0y8az191ff7fxjsxyb1y2kzv72ic";
};
meta = {
homepage = "http://darwinsys.com/file";
2013-02-16 23:17:18 +01:00
description = "A program that shows the type of files";
platforms = stdenv.lib.platforms.all;
};
}