Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: fbda7ca802b3
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7ec20f99e65f
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jun 3, 2019

  1. cppzmq: 4.2.3 -> 4.3.0

    abbradar committed Jun 3, 2019
    Copy the full SHA
    7ec20f9 View commit details
Showing with 8 additions and 2 deletions.
  1. +8 −2 pkgs/development/libraries/cppzmq/default.nix
10 changes: 8 additions & 2 deletions pkgs/development/libraries/cppzmq/default.nix
Original file line number Diff line number Diff line change
@@ -2,18 +2,24 @@

stdenv.mkDerivation rec {
name = "cppzmq-${version}";
version = "4.2.3";
version = "4.3.0";

src = fetchFromGitHub {
owner = "zeromq";
repo = "cppzmq";
rev = "v${version}";
sha256 = "1yjs25ra5s8zs0rhk50w3f1rrrl80hhq784lwdhh1m3risk740sa";
sha256 = "1g45cdny1m08zw4l261bqcqfdb825mnwjwqcf35bkyc03fr4213l";
};

nativeBuildInputs = [ cmake ];
buildInputs = [ zeromq ];

cmakeFlags = [
# Tests try to download googletest at compile time; there is no option
# to use a system one and no simple way to download it beforehand.
"-DCPPZMQ_BUILD_TESTS=OFF"
];

meta = with stdenv.lib; {
homepage = https://github.com/zeromq/cppzmq;
license = licenses.bsd2;