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: 96c2cad2ddd6
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7b0b4cd3977f
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on May 9, 2018

  1. Verified

    This commit was signed with the committer’s verified signature.
    songy23 Yang Song
    Copy the full SHA
    7b0b4cd View commit details
Showing with 16 additions and 0 deletions.
  1. +16 −0 pkgs/top-level/perl-packages.nix
16 changes: 16 additions & 0 deletions pkgs/top-level/perl-packages.nix
Original file line number Diff line number Diff line change
@@ -11758,6 +11758,22 @@ let self = _self // overrides; _self = with self; {
};
};

NetZooKeeper = buildPerlPackage rec {
name = "Net-ZooKeeper-0.41";
src = fetchurl {
url = "mirror://cpan/authors/id/M/MA/MAF/${name}.tar.gz";
sha256 = "91c177f30f82302eaf3173356eef05c21bc82163df752acb469177bd14a72db9";
};
buildInputs = [ pkgs.zookeeper_mt ];
NIX_CFLAGS_COMPILE = "-I${pkgs.zookeeper_mt}/include";
NIX_CFLAGS_LINK = "-L${pkgs.zookeeper_mt.out}/lib -lzookeeper_mt";
meta = {
maintainers = [ maintainers.limeytexan ];
homepage = https://github.com/mark-5/p5-net-zookeeper;
license = stdenv.lib.licenses.asl20;
};
};

PackageConstants = buildPerlPackage {
name = "Package-Constants-0.06";
src = fetchurl {