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

Commits on Nov 17, 2018

  1. corgi: 0.2.3 -> 0.2.4

    kalbasit committed Nov 17, 2018
    Copy the full SHA
    fb3e78a View commit details
  2. Merge pull request #50488 from kalbasit/nixpkgs_update-corgi

    corgi: 0.2.3 -> 0.2.4
    c0bw3b authored Nov 17, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    9f1779e View commit details
Showing with 4 additions and 3 deletions.
  1. +4 −3 pkgs/development/tools/corgi/default.nix
7 changes: 4 additions & 3 deletions pkgs/development/tools/corgi/default.nix
Original file line number Diff line number Diff line change
@@ -2,15 +2,16 @@

buildGoPackage rec {
name = "corgi-${rev}";
rev = "v0.2.3";
rev = "v0.2.4";

goPackagePath = "github.com/DrakeW/corgi";

src = fetchFromGitHub {
inherit rev;

owner = "DrakeW";
repo = "corgi";
inherit rev;
sha256 = "0ahwpyd6dac04qw2ak51xfbwkr42sab1gkhh52i7hlcy12jpwl8q";
sha256 = "0h9rjv1j129n1ichwpiiyspgim1273asi3s6hgizvbc75gbbb8fn";
};

goDeps = ./deps.nix;