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

Commits on Mar 20, 2020

  1. Copy the full SHA
    4fa3bd1 View commit details

Commits on Mar 24, 2020

  1. Merge pull request #83011 from piotr-szegda/keybase-5-3-1-update

    keybase,kbfs,keybase-gui: 5.3.0 -> 5.3.1
    nh2 authored Mar 24, 2020
    Copy the full SHA
    d8c1baa View commit details
Showing with 5 additions and 5 deletions.
  1. +2 −2 pkgs/tools/security/keybase/default.nix
  2. +3 −3 pkgs/tools/security/keybase/gui.nix
4 changes: 2 additions & 2 deletions pkgs/tools/security/keybase/default.nix
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@

buildGoPackage rec {
pname = "keybase";
version = "5.3.0";
version = "5.3.1";

goPackagePath = "github.com/keybase/client";
subPackages = [ "go/kbnm" "go/keybase" ];
@@ -17,7 +17,7 @@ buildGoPackage rec {
owner = "keybase";
repo = "client";
rev = "v${version}";
sha256 = "0xqqzjlvq9sgjx1jzv0w2ls0365xzfh4iapzqkrqka635xfggwcn";
sha256 = "1a1h2c8jr4r20w4gyvyrpsslmh69bl8syl3jbr0fcr2kka7vqnzg";
};

patches = [
6 changes: 3 additions & 3 deletions pkgs/tools/security/keybase/gui.nix
Original file line number Diff line number Diff line change
@@ -4,16 +4,16 @@
, runtimeShell, gsettings-desktop-schemas }:

let
versionSuffix = "20200310205642.4f2689009b";
versionSuffix = "20200320154633.3e235215b3";
in

stdenv.mkDerivation rec {
pname = "keybase-gui";
version = "5.3.0"; # Find latest version from https://prerelease.keybase.io/deb/dists/stable/main/binary-amd64/Packages
version = "5.3.1"; # Find latest version from https://prerelease.keybase.io/deb/dists/stable/main/binary-amd64/Packages

src = fetchurl {
url = "https://s3.amazonaws.com/prerelease.keybase.io/linux_binaries/deb/keybase_${version + "-" + versionSuffix}_amd64.deb";
sha256 = "0zasw2dk33k6c6xqsjnyz3b3s1j27vza9alkp0hpvds88mnnmjv1";
sha256 = "00k1xg27arbqpa836c55fhkxjvjbhjgkf6jqzprjzz76zksfdcx4";
};

nativeBuildInputs = [