summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorAnders Kaseorg <andersk@mit.edu>2021-07-30 02:46:45 -0700
committerAnders Kaseorg <andersk@mit.edu>2021-07-30 02:47:42 -0700
commit00d5259f5e4aeed77c53e45cb1e5ea8725fef0a7 (patch)
treeab639253015f3bef3c9528f7b12a54a6657086ff /pkgs
parent303e44b3c11a1ed3b470f90bc6d1f03efdb87239 (diff)
downloadnixpkgs-00d5259f5e4aeed77c53e45cb1e5ea8725fef0a7.tar
nixpkgs-00d5259f5e4aeed77c53e45cb1e5ea8725fef0a7.tar.gz
nixpkgs-00d5259f5e4aeed77c53e45cb1e5ea8725fef0a7.tar.bz2
nixpkgs-00d5259f5e4aeed77c53e45cb1e5ea8725fef0a7.tar.lz
nixpkgs-00d5259f5e4aeed77c53e45cb1e5ea8725fef0a7.tar.xz
nixpkgs-00d5259f5e4aeed77c53e45cb1e5ea8725fef0a7.tar.zst
nixpkgs-00d5259f5e4aeed77c53e45cb1e5ea8725fef0a7.zip
vk-cli: Remove zulip dependency
zulip is an application; it does not have any libraries.

Signed-off-by: Anders Kaseorg <andersk@mit.edu>
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/networking/instant-messengers/vk-cli/default.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/applications/networking/instant-messengers/vk-cli/default.nix b/pkgs/applications/networking/instant-messengers/vk-cli/default.nix
index e1b3cc4f775..bb34fd7534c 100644
--- a/pkgs/applications/networking/instant-messengers/vk-cli/default.nix
+++ b/pkgs/applications/networking/instant-messengers/vk-cli/default.nix
@@ -2,7 +2,6 @@
 , lib
 , fetchurl
 , curl
-, zulip
 , p7zip
 , glibc
 , ncurses
@@ -42,7 +41,7 @@ stdenv.mkDerivation rec {
   postFixup = ''
     patchelf $out/bin/vk-cli \
       --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
-      --set-rpath "${lib.makeLibraryPath [ curl zulip glibc ]}"
+      --set-rpath "${lib.makeLibraryPath [ curl glibc ]}"
   '';
 
   meta = with lib; {