mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 14:41:17 +00:00
keybase-node-client: add missing gnupg runtime dependency
This commit is contained in:
parent
4bdf8ca43e
commit
b5e7e94238
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchurl, makeWrapper, callPackage, utillinux }:
|
||||
{ stdenv, fetchurl, makeWrapper, callPackage, gnupg, utillinux }:
|
||||
|
||||
with stdenv.lib;
|
||||
|
||||
|
@ -19,7 +19,7 @@ in nodePackages.buildNodePackage rec {
|
|||
})];
|
||||
|
||||
deps = (filter (v: nixType v == "derivation") (attrValues nodePackages));
|
||||
buildInputs = [ makeWrapper ];
|
||||
buildInputs = [ makeWrapper gnupg ];
|
||||
|
||||
postInstall = ''
|
||||
wrapProgram "$out/bin/keybase" --set NODE_PATH "$out/lib/node_modules/keybase/node_modules/"
|
||||
|
|
Loading…
Reference in a new issue