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

28 lines
674 B
Nix
Raw Normal View History

{ stdenv, fetchurl, file, zlib }:
stdenv.mkDerivation rec {
2017-03-15 22:01:39 +01:00
name = "file-${version}";
version = "5.32";
src = fetchurl {
urls = [
"ftp://ftp.astron.com/pub/file/${name}.tar.gz"
2017-03-15 22:01:39 +01:00
"https://distfiles.macports.org/file/${name}.tar.gz"
];
sha256 = "0l1bfa0icng9vdwya00ff48fhvjazi5610ylbhl35qi13d6xqfc6";
};
nativeBuildInputs = stdenv.lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) file;
2017-03-15 22:01:39 +01:00
buildInputs = [ zlib ];
doCheck = true;
meta = with stdenv.lib; {
homepage = http://darwinsys.com/file;
2013-02-16 23:17:18 +01:00
description = "A program that shows the type of files";
2017-03-15 22:01:39 +01:00
license = licenses.bsd2;
platforms = platforms.all;
};
}