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

Commits on Nov 26, 2020

  1. Copy the full SHA
    c8251d4 View commit details
  2. Merge pull request #104974 from zakame/contrib/perl-Command-Runner

    perlPackages.CommandRunner: init at 0.103
    stigtsp authored Nov 26, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    Copy the full SHA
    5e70725 View commit details
Showing with 17 additions and 0 deletions.
  1. +17 −0 pkgs/top-level/perl-packages.nix
17 changes: 17 additions & 0 deletions pkgs/top-level/perl-packages.nix
Original file line number Diff line number Diff line change
@@ -3134,6 +3134,23 @@ let
};
};

CommandRunner = buildPerlModule {
pname = "Command-Runner";
version = "0.103";
src = fetchurl {
url = "mirror://cpan/authors/id/S/SK/SKAJI/Command-Runner-0.103.tar.gz";
sha256 = "0f180b5c3b3fc9db7b83d4a5fdd959db34f7d6d2472f817dbf8b4b795a9dc82a";
};
buildInputs = [ ModuleBuildTiny ];
propagatedBuildInputs = [ CaptureTiny StringShellQuote Win32ShellQuote ];
meta = {
homepage = "https://github.com/skaji/Command-Runner";
description = "Run external commands and Perl code refs";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
maintainers = [ maintainers.zakame ];
};
};

commonsense = buildPerlPackage {
pname = "common-sense";
version = "3.75";