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: 552e55ac2b91
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: af5ddcdd6ff4
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Oct 15, 2019

  1. perlPackage.RPCEPCService: Init at 0.0.11

    Add the RPCEPCService perl package, and its
    dependency DataSExpression.
    matthuszagh committed Oct 15, 2019
    Copy the full SHA
    b740642 View commit details

Commits on Oct 19, 2019

  1. Merge pull request #71153 from matthuszagh/perlpackage-rpcepcservice

    perlPackage.RPCEPCService: Init at 0.0.11
    c0bw3b authored Oct 19, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    af5ddcd View commit details
Showing with 29 additions and 0 deletions.
  1. +29 −0 pkgs/top-level/perl-packages.nix
29 changes: 29 additions & 0 deletions pkgs/top-level/perl-packages.nix
Original file line number Diff line number Diff line change
@@ -3975,6 +3975,20 @@ let
};
};

DataSExpression = buildPerlPackage {
pname = "Data-SExpression";
version = "0.41";
src = fetchurl {
url = "mirror://cpan/authors/id/N/NE/NELHAGE/Data-SExpression-0.41.tar.gz";
sha256 = "8162426a4285a094385fdfaf6d09ced106d5af57553f953acb1d56867dd0149b";
};
buildInputs = [ TestDeep ];
propagatedBuildInputs = [ ClassAccessor ];
meta = {
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};

DataSpreadPagination = buildPerlPackage {
pname = "Data-SpreadPagination";
version = "0.1.2";
@@ -15140,6 +15154,21 @@ let
};
};

RPCEPCService = buildPerlPackage {
pname = "RPC-EPC-Service";
version = "0.0.11";
src = fetchurl {
url = "mirror://cpan/authors/id/K/KI/KIWANAMI/RPC-EPC-Service-v0.0.11.tar.gz";
sha256 = "975f4134365258fb47fa921919053513adb9101f2bd420fcefe345f209128be3";
};
buildInputs = [ ModuleBuild ];
propagatedBuildInputs = [ AnyEvent DataSExpression ];
meta = {
description = "An Asynchronous Remote Procedure Stack";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};

RSSParserLite = buildPerlPackage {
pname = "RSS-Parser-Lite";
version = "0.12";