nixpkgs/pkgs/tools/misc/file/default.nix
William A. Kennington III bd0120202e file: 5.24 -> 5.25
2015-09-22 14:30:16 -07:00

22 lines
494 B
Nix

{ stdenv, fetchurl, zlib }:
stdenv.mkDerivation rec {
name = "file-5.25";
buildInputs = [ zlib ];
src = fetchurl {
urls = [
"ftp://ftp.astron.com/pub/file/${name}.tar.gz"
"http://distfiles.macports.org/file/${name}.tar.gz"
];
sha256 = "1jhfi5mivdnqvry5la5q919l503ahwdwbf3hjhiv97znccakhd9p";
};
meta = {
homepage = "http://darwinsys.com/file";
description = "A program that shows the type of files";
platforms = stdenv.lib.platforms.all;
};
}