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

Commits on Nov 4, 2018

  1. Copy the full SHA
    354379d View commit details
  2. Merge pull request #49750 from nthorne/GitBigPicture0_10_12

    git-big-picture: 0.9.0 -> 0.10.1
    Mic92 authored Nov 4, 2018
    Copy the full SHA
    aaf7ba0 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/applications/version-management/git-and-tools/git-big-picture/default.nix
Original file line number Diff line number Diff line change
@@ -2,15 +2,15 @@

python2Packages.buildPythonApplication rec {
pname = "git-big-picture";
version = "0.9.0";
version = "0.10.1";

name = "${pname}-${version}";

src = fetchFromGitHub {
owner = "esc";
repo = pname;
rev = "v${version}";
sha256 = "1h283gzs4nx8lrarmr454zza52cilmnbdrqn1n33v3cn1rayl3c9";
sha256 = "0b0zdq7d7k7f6p3wwc799347fraphbr20rxd1ysnc4xi1cj4wpmi";
};

buildInputs = [ git graphviz ];
@@ -21,7 +21,7 @@ python2Packages.buildPythonApplication rec {
'';

meta = {
description = "Tool for visualization of Git repositories.";
description = "Tool for visualization of Git repositories";
homepage = https://github.com/esc/git-big-picture;
license = stdenv.lib.licenses.gpl3;
platforms = stdenv.lib.platforms.linux;