Skip to content

Commit

Permalink
lastpass-cli 1.3.1 overlay
Browse files Browse the repository at this point in the history
Use an overlay to pick up a critical bug-fix from the lastest version.
Without this, lpass is unusable due to a certificate change that took
place.
lastpass/lastpass-cli#409
lastpass/lastpass-cli#410
  • Loading branch information
ivanbrennan committed May 27, 2018
1 parent b70d392 commit 6656828
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions overlays/core/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@ self: super: {

interactive-editor = super.callPackage ./interactive-editor { };

# get certificate fix
# https://github.com/lastpass/lastpass-cli/pull/410
lastpass-cli = super.lastpass-cli.overrideAttrs (oldAttrs: rec {
version = "1.3.1";
src = super.fetchFromGitHub {
owner = "lastpass";
repo = "lastpass-cli";
rev = "v${version}";
sha256 = "11drzmfdvb8ydw1dxaz9zz8rk0jjqmfv076vydz05qqvgx59s38h";
};
});

linuxPackages = (super.linuxPackagesFor super.linuxPackages.kernel).extend (
self': super': {
i8042_debounce = super'.callPackage ./i8042-debounce { };
Expand Down

0 comments on commit 6656828

Please sign in to comment.