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: 0e64b04afcba
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 349288d101de
Choose a head ref
  • 3 commits
  • 3 files changed
  • 2 contributors

Commits on Oct 20, 2020

  1. maintainers: add ldenefle

    ldenefle committed Oct 20, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    c82aa75 View commit details
  2. Copy the full SHA
    cba7a74 View commit details

Commits on Nov 5, 2020

  1. Merge pull request #100582 from ldenefle/git-chglog-0.9.1

    gitAndTools.git-chglog: init at 0.9.1
    roberth authored Nov 5, 2020
    Copy the full SHA
    349288d View commit details
6 changes: 6 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
@@ -4822,6 +4822,12 @@
githubId = 20250323;
name = "Lucio Delelis";
};
ldenefle = {
email = "ldenefle@gmail.com";
github = "ldenefle";
githubId = 20558127;
name = "Lucas Denefle";
};
ldesgoui = {
email = "ldesgoui@gmail.com";
github = "ldesgoui";
Original file line number Diff line number Diff line change
@@ -74,6 +74,8 @@ let
# support for bugzilla
git-bz = callPackage ./git-bz { };

git-chglog = callPackage ./git-chglog { };

git-cinnabar = callPackage ./git-cinnabar { };

git-codeowners = callPackage ./git-codeowners { };
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{ lib, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
pname = "git-chglog";
version = "0.9.1";

goPackagePath = "github.com/git-chglog/git-chglog";

src = fetchFromGitHub {
owner = "git-chglog";
repo = "git-chglog";
rev = version;
sha256 = "08x7w1jlvxxvwnz6pvkjmfd3nqayd8n15r9jbqi2amrp31z0gq0p";
};

meta = with lib; {
description = "CHANGELOG generator implemented in Go (Golang)";
license = licenses.mit;
maintainers = with maintainers; [ ldenefle ];
};
}