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

Commits on Nov 3, 2019

  1. keybase, keybase-gui, kbfs: 4.6.0 -> 4.7.2, added dependencies

    all: update from 4.6.0 to 4.7.2
    
    keybase:
    - added gnupg as a dependency and patch fix-patch-keybase.patch
    
    kbfs:
    - added fuse as a dependency and patch fix-patch-kbfs.patch
    judaew authored and worldofpeace committed Nov 3, 2019
    Copy the full SHA
    3894ec0 View commit details
  2. Merge pull request #71287 from judaew/dep/keybase

    keybase, keybase-gui, kbfs: 4.6.0 -> 4.7.2, added dependencies
    worldofpeace authored Nov 3, 2019
    Copy the full SHA
    e43ab14 View commit details
17 changes: 13 additions & 4 deletions pkgs/tools/security/keybase/default.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{ stdenv, lib, buildGoPackage, fetchFromGitHub
{ stdenv, substituteAll, lib, buildGoPackage, fetchFromGitHub
, AVFoundation, AudioToolbox, ImageIO, CoreMedia
, Foundation, CoreGraphics, MediaToolbox
, gnupg
}:

buildGoPackage rec {
pname = "keybase";
version = "4.6.0";
version = "4.7.2";

goPackagePath = "github.com/keybase/client";
subPackages = [ "go/keybase" ];
@@ -16,10 +17,18 @@ buildGoPackage rec {
owner = "keybase";
repo = "client";
rev = "v${version}";
sha256 = "1aqj5s3vfji1zl7xdzphnsw3b8pnbg22n9rzdxkcdjf7via5wz2k";
sha256 = "1ixfq9qv71misg04fvf4892z956w5aydq0r1wk6qk5jjqp6gf4lv";
};

buildInputs = lib.optionals stdenv.isDarwin [ AVFoundation AudioToolbox ImageIO CoreMedia Foundation CoreGraphics MediaToolbox ];
patches = [
(substituteAll {
src = ./fix-paths-keybase.patch;
gpg = "${gnupg}/bin/gpg";
gpg2 = "${gnupg}/bin/gpg2";
})
];

buildInputs = stdenv.lib.optionals stdenv.isDarwin [ AVFoundation AudioToolbox ImageIO CoreMedia Foundation CoreGraphics MediaToolbox ];
buildFlags = [ "-tags production" ];

meta = with stdenv.lib; {
48 changes: 48 additions & 0 deletions pkgs/tools/security/keybase/fix-paths-kbfs.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
diff --git a/go/kbfs/libfuse/mounter.go b/go/kbfs/libfuse/mounter.go
index d791ffc2..b116ad5d 100644
--- a/go/kbfs/libfuse/mounter.go
+++ b/go/kbfs/libfuse/mounter.go
@@ -108,7 +108,7 @@ func (m *mounter) Unmount() (err error) {
case "darwin":
_, err = exec.Command("/sbin/umount", dir).Output()
case "linux":
- fusermountOutput, fusermountErr := exec.Command("fusermount", "-u", dir).CombinedOutput()
+ fusermountOutput, fusermountErr := exec.Command("@fusermount@", "-u", dir).CombinedOutput()
// Only clean up mountdir on a clean unmount.
if fusermountErr == nil {
m.log.Info("Successfully unmounted")
@@ -135,7 +135,7 @@ func (m *mounter) Unmount() (err error) {
"/usr/sbin/diskutil", "unmountDisk", "force", dir).Output()
case "linux":
// Lazy unmount; will unmount when KBFS is no longer in use.
- _, err = exec.Command("fusermount", "-u", "-z", dir).Output()
+ _, err = exec.Command("@fusermount@", "-u", "-z", dir).Output()
default:
err = errors.New("Forced unmount is not supported on this platform yet")
}
diff --git a/go/vendor/bazil.org/fuse/mount_linux.go b/go/vendor/bazil.org/fuse/mount_linux.go
index ec7fd89c..4d0a9e30 100644
--- a/go/vendor/bazil.org/fuse/mount_linux.go
+++ b/go/vendor/bazil.org/fuse/mount_linux.go
@@ -196,7 +196,7 @@ func mount(dir string, conf *mountConfig, ready chan<- struct{}, _ *error) (fuse
defer readFile.Close()

cmd := exec.Command(
- "fusermount",
+ "@fusermount@",
"-o", conf.getOptions(),
"--",
dir,
diff --git a/go/vendor/bazil.org/fuse/unmount_linux.go b/go/vendor/bazil.org/fuse/unmount_linux.go
index f02448af..6e4c6c23 100644
--- a/go/vendor/bazil.org/fuse/unmount_linux.go
+++ b/go/vendor/bazil.org/fuse/unmount_linux.go
@@ -21,7 +21,7 @@ func unmount(dir string) error {
return sysunix.Unmount(dir, sysunix.MNT_DETACH)
}

- cmd := exec.Command("fusermount", "-u", dir)
+ cmd := exec.Command("@fusermount@", "-u", dir)
output, err := cmd.CombinedOutput()
if err != nil {
if len(output) > 0 {
16 changes: 16 additions & 0 deletions pkgs/tools/security/keybase/fix-paths-keybase.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
diff --git a/go/libkb/gpg_cli.go b/go/libkb/gpg_cli.go
index 3c7c6257..ae8f7e2f 100644
--- a/go/libkb/gpg_cli.go
+++ b/go/libkb/gpg_cli.go
@@ -54,9 +54,9 @@ func (g *GpgCLI) Configure(mctx MetaContext) (err error) {
if len(prog) > 0 {
err = canExec(prog)
} else {
- prog, err = exec.LookPath("gpg2")
+ prog, err = exec.LookPath("@gpg2@")
if err != nil {
- prog, err = exec.LookPath("gpg")
+ prog, err = exec.LookPath("@gpg@")
}
}
if err != nil {
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 = "20191010154240.134c2d892b";
versionSuffix = "20191028173732.6fc2e969b4";
in

stdenv.mkDerivation rec {
pname = "keybase-gui";
version = "4.6.0"; # Find latest version from https://prerelease.keybase.io/deb/dists/stable/main/binary-amd64/Packages
version = "4.7.2"; # 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 = "a25f0c676c00d306859d32e4dad7a23dd4955fa0b352be50c281081f2cf000ae";
sha256 = "01slhdxcjs1543rz1khxhzn25g26vm9fd9mcyd5ahp2v4g37b8sd";
};

nativeBuildInputs = [
9 changes: 8 additions & 1 deletion pkgs/tools/security/keybase/kbfs.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, buildGoPackage, fetchFromGitHub, keybase }:
{ stdenv, substituteAll, buildGoPackage, fetchFromGitHub, fuse, osxfuse, keybase }:

buildGoPackage {
pname = "kbfs";
@@ -10,6 +10,13 @@ buildGoPackage {

dontRenameImports = true;

patches = [
(substituteAll {
src = ./fix-paths-kbfs.patch;
fusermount = "${fuse}/bin/fusermount";
})
];

buildFlags = [ "-tags production" ];

meta = with stdenv.lib; {