Merge pull request #100908 from r-ryantm/auto-update/cppzmq

This commit is contained in:
Sandro 2020-11-27 23:22:03 +01:00 committed by GitHub
commit c2b4e80d51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 3 deletions

View File

@ -2,13 +2,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "cppzmq"; pname = "cppzmq";
version = "4.6.0"; version = "4.7.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "zeromq"; owner = "zeromq";
repo = "cppzmq"; repo = "cppzmq";
rev = "v${version}"; rev = "v${version}";
sha256 = "19acx2bzi4n6fdnfgkja1nds7m1bwg8lw5vfcijrx9fv75pa7m8h"; sha256 = "00lb3pv923nbpaf7ric2cv6lbpspknj0pxj6yj5jyah7r3zw692m";
}; };
nativeBuildInputs = [ cmake ]; nativeBuildInputs = [ cmake ];

View File

@ -31,5 +31,6 @@ stdenv.mkDerivation {
license = licenses.bsd3; license = licenses.bsd3;
maintainers = with maintainers; [ msm ]; maintainers = with maintainers; [ msm ];
platforms = platforms.unix; platforms = platforms.unix;
broken = stdenv.isDarwin;
}; };
} }

View File

@ -51,6 +51,6 @@ with stdenv;
homepage = "https://irods.org"; homepage = "https://irods.org";
license = stdenv.lib.licenses.bsd3; license = stdenv.lib.licenses.bsd3;
maintainers = [ stdenv.lib.maintainers.bzizou ]; maintainers = [ stdenv.lib.maintainers.bzizou ];
platforms = stdenv.lib.platforms.all; platforms = stdenv.lib.platforms.linux;
}; };
} }