nixpkgs/pkgs/tools/misc/file/default.nix
William A. Kennington III d12cc767bd file: 5.22 -> 5.23
2015-06-18 23:33:29 -07:00

18 lines
421 B
Nix

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