mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 10:23:29 +00:00
Merge branch 'php-zmq' of git://github.com/proger/nixpkgs
php-packages: add zmq
This commit is contained in:
commit
a87301092b
@ -48,4 +48,18 @@ let self = with self; {
|
||||
sha256 = "1gcsh9iar5qa1yzpjki9bb5rivcb6yjp45lmjmp98wlyf83vmy2y";
|
||||
};
|
||||
};
|
||||
|
||||
zmq = buildPecl rec {
|
||||
name = "zmq-1.1.2";
|
||||
src = pkgs.fetchurl {
|
||||
url = "http://pecl.php.net/get/${name}.tgz";
|
||||
sha256 = "0ccz73p8pkda3y9p9qbr3m19m0yrf7k2bvqgbaly3ibgh9bazc69";
|
||||
};
|
||||
|
||||
configureFlags = [
|
||||
"--with-zmq=${pkgs.zeromq2}"
|
||||
];
|
||||
|
||||
buildInputs = [ pkgs.pkgconfig ];
|
||||
};
|
||||
}; in self
|
||||
|
Loading…
Reference in New Issue
Block a user