f5fa5fa4d6
* 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
22 lines
520 B
Nix
22 lines
520 B
Nix
{ stdenv, fetchurl, libuuid }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "zeromq-3.2.5";
|
|
|
|
src = fetchurl {
|
|
url = "http://download.zeromq.org/${name}.tar.gz";
|
|
sha256 = "0911r7q4i1x9gnfinj39vx08fnz59mf05vl75zdkws36lib3wr89";
|
|
};
|
|
|
|
buildInputs = [ libuuid ];
|
|
|
|
meta = with stdenv.lib; {
|
|
branch = "3";
|
|
homepage = http://www.zeromq.org;
|
|
description = "The Intelligent Transport Layer";
|
|
license = licenses.gpl3;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ wkennington ];
|
|
};
|
|
}
|