nixpkgs/pkgs/tools/misc/file/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00

26 lines
574 B
Nix

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