{ 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; }; }