1
0
Fork 1
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:
Michael Fellinger 2014-09-23 08:05:12 +02:00
parent 4bdf8ca43e
commit b5e7e94238

View file

@ -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/"