summary refs log blame commit diff
path: root/pkgs/development/libraries/zeromq/4.x.nix
blob: 87417d1b77a288755bfb47dc39e916964c31c430 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                    

                         
                        


                                                      
                                                                    

    
                                                
 
                           


                                                    


                                                    

    
{ stdenv, fetchurl, libuuid, pkgconfig, libsodium }:

stdenv.mkDerivation rec {
  name = "zeromq-4.1.1";

  src = fetchurl {
    url = "http://download.zeromq.org/${name}.tar.gz";
    sha256 = "1nxqvb1n8yy6953nv095riirrpmw4w340qd6sjm4cfdl0rbixmj3";
  };

  buildInputs = [ libuuid pkgconfig libsodium ];

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