mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 06:01:15 +00:00
zeromq4: Refactor
This commit is contained in:
parent
048148ad97
commit
e0ba90ba4e
|
@ -1,4 +1,4 @@
|
|||
{stdenv, fetchurl, libuuid}:
|
||||
{ stdenv, fetchurl, libuuid }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "zeromq-4.0.5";
|
||||
|
@ -10,9 +10,12 @@ stdenv.mkDerivation rec {
|
|||
|
||||
buildInputs = [ libuuid ];
|
||||
|
||||
meta = {
|
||||
meta = with stdenv.lib; {
|
||||
branch = "4";
|
||||
homepage = "http://www.zeromq.org";
|
||||
description = "The Intelligent Transport Layer";
|
||||
license = licenses.gpl3;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ wkennington ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue