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

Commits on Nov 13, 2019

  1. Copy the full SHA
    4297d9d View commit details
  2. Merge pull request #73279 from tekeri/add-perl-logjournald

    perlPackages.LogJournald: init at 0.30
    7c6f434c authored Nov 13, 2019

    Verified

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

LogJournald = buildPerlModule rec {
pname = "Log-Journald";
version = "0.30";
src = fetchurl {
url = "mirror://cpan/authors/id/L/LK/LKUNDRAK/Log-Journald-${version}.tar.gz";
sha256 = "55992cf9a1e1fb833f428300525bfa7cf7ed46b83ec414f82a091789b37d08a3";
};
buildInputs = [ ModuleBuild pkgs.pkgconfig pkgs.systemd ];
postPatch = ''
substituteInPlace Build.PL \
--replace "libsystemd-journal" "libsystemd"
'';
meta = {
description = "Send messages to a systemd journal";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};

LogLogLite = buildPerlPackage {
pname = "Log-LogLite";
version = "0.82";