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

Commits on Apr 3, 2020

  1. help2man: 1.47.12 -> 1.47.13

    r-ryantm authored and FRidh committed Apr 3, 2020
    Copy the full SHA
    88a6078 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/tools/misc/help2man/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/tools/misc/help2man/default.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{ stdenv, fetchurl, perlPackages, gettext }:

stdenv.mkDerivation rec {
name = "help2man-1.47.12";
name = "help2man-1.47.13";

src = fetchurl {
url = "mirror://gnu/help2man/${name}.tar.xz";
sha256 = "0q5ixbxz1v7wqnpg4bq7k7nbv9ssnmcvdbqsq5ycjvniz56ac2vx";
sha256 = "08q5arxz4j4pyx5q4712c2rn7p7dw7as9xg38yvmsh1c3ynvpy5p";
};

nativeBuildInputs = [ gettext perlPackages.LocaleGettext ];
@@ -37,7 +37,7 @@ stdenv.mkDerivation rec {
‘--version’ output of other commands.
'';

homepage = https://www.gnu.org/software/help2man/;
homepage = "https://www.gnu.org/software/help2man/";

license = licenses.gpl3Plus;
platforms = platforms.all;