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

Commits on Oct 23, 2018

  1. Copy the full SHA
    6392bf5 View commit details
  2. git-bug: init at 0.4.0

    Add git-bug, a decentralized bug tracker written in Go
    royneary committed Oct 23, 2018
    Copy the full SHA
    fdd59b6 View commit details
  3. git-bug: install man pages

    royneary committed Oct 23, 2018
    Copy the full SHA
    82d87cc View commit details

Commits on Oct 24, 2018

  1. Merge pull request #48924 from royneary/git-bug

    git-bug: init at 0.4.0
    xeji authored Oct 24, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    2b7f6b3 View commit details
5 changes: 5 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
@@ -3641,6 +3641,11 @@
github = "roosemberth";
name = "Roosembert (Roosemberth) Palacios";
};
royneary = {
email = "christian@ulrich.earth";
github = "royneary";
name = "Christian Ulrich";
};
rprospero = {
email = "rprospero+nix@gmail.com";
github = "rprospero";
Original file line number Diff line number Diff line change
@@ -57,6 +57,8 @@ let

git-annex-remote-rclone = callPackage ./git-annex-remote-rclone { };

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

# support for bugzilla
git-bz = callPackage ./git-bz { };

Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
name = "git-bug-${version}";
version = "0.4.0";
rev = "2ab2412771d58a1b1f3bfeb5a6e9da2e683b0e12";
goPackagePath = "github.com/MichaelMure/git-bug";

src = fetchFromGitHub {
inherit rev;
owner = "MichaelMure";
repo = "git-bug";
sha256 = "1zyvyg0p5h71wvyxrzkr1bwddxm3x8p44n6wh9ccfdxp8d2k6k25";
};

goDeps = ./deps.nix;

postInstall = ''
cd go/src/${goPackagePath}
install -D -m 0644 misc/bash_completion/git-bug "$bin/etc/bash_completion.d/git-bug"
install -D -m 0644 misc/zsh_completion/git-bug "$bin/share/zsh/site-functions/git-bug"
install -D -m 0644 -t "$bin/share/man/man1" doc/man/*
'';

meta = with stdenv.lib; {
description = "Distributed bug tracker embedded in Git";
homepage = https://github.com/MichaelMure/git-bug;
license = licenses.gpl3;
platforms = platforms.all;
maintainers = with maintainers; [ royneary ];
};
}
417 changes: 417 additions & 0 deletions pkgs/applications/version-management/git-and-tools/git-bug/deps.nix

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.