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: d4930aceaf36
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e08c2638f2c2
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Mar 25, 2018

  1. gitAndTools.gitRemoteGcrypt: 1.0.0 -> 1.0.3

    Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done:
    
    - built on NixOS
    /tmp/tmp.HNtjNxAelH /home/ryantm/.cache/nixpkgs
    /home/ryantm/.cache/nixpkgs
    - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
    - found 1.0.3 with grep in /nix/store/y4rmp0i9bslzh2izpjhl9glklwhd9ypn-git-remote-gcrypt-1.0.3
    - directory tree listing: https://gist.github.com/4dd37ba2fc098537882e10e0c38823bb
    ryantm authored and matthewbauer committed Mar 25, 2018
    Copy the full SHA
    e08c263 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/applications/version-management/git-and-tools/git-remote-gcrypt/default.nix
Original file line number Diff line number Diff line change
@@ -2,14 +2,14 @@

stdenv.mkDerivation rec {
name = "git-remote-gcrypt-${version}";
version = "1.0.0";
version = "1.0.3";
rev = version;

src = fetchFromGitHub {
inherit rev;
owner = "spwhitton";
repo = "git-remote-gcrypt";
sha256 = "0c8ig1pdqj7wjwldnf62pmm2x29ri62x6b24mbsl2nxzkqbwh379";
sha256 = "1vay3204729c7wajgn3nxf0s0hzwpdrw14pl6kd8w2ss25gvw2k1";
};

outputs = [ "out" "man" ];