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

Commits on Jun 5, 2017

  1. Copy the full SHA
    abc4f5a View commit details
  2. Merge pull request #26406 from vmandela/git-series-man

    git-series: install man page
    grahamc authored Jun 5, 2017
    Copy the full SHA
    d1d9186 View commit details
Showing with 5 additions and 0 deletions.
  1. +5 −0 pkgs/development/tools/git-series/default.nix
5 changes: 5 additions & 0 deletions pkgs/development/tools/git-series/default.nix
Original file line number Diff line number Diff line change
@@ -18,6 +18,11 @@ buildRustPackage rec {
nativeBuildInputs = [ cmake pkgconfig perl ];
buildInputs = [ openssl zlib ];

postBuild = ''
mkdir -p "$out/man/man1"
cp "$src/git-series.1" "$out/man/man1"
'';

meta = with stdenv.lib; {
description = "A tool to help with formatting git patches for review on mailing lists";
longDescription = ''