about summary refs log tree commit diff
path: root/pkgs/applications/editors/sublime/4/common.nix
diff options
context:
space:
mode:
authorTim Zook <tim@zookatron.com>2021-12-12 13:56:58 -0600
committerTim Zook <tim@zookatron.com>2021-12-13 15:33:19 -0600
commitd7b6075cdc540a628611f0f696f10227f373ac8b (patch)
tree28325ce5b09a0a979502577ccf36c2ea0e41e918 /pkgs/applications/editors/sublime/4/common.nix
parent9ec8e461418c18766a6abdfb2345ef22a10d1e09 (diff)
sublime4: add libcurl to application library path
See https://github.com/NixOS/nixpkgs/issues/146635
Diffstat (limited to 'pkgs/applications/editors/sublime/4/common.nix')
-rw-r--r--pkgs/applications/editors/sublime/4/common.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/editors/sublime/4/common.nix b/pkgs/applications/editors/sublime/4/common.nix
index 13eabde14e6d5..81eaa442425bc 100644
--- a/pkgs/applications/editors/sublime/4/common.nix
+++ b/pkgs/applications/editors/sublime/4/common.nix
@@ -23,7 +23,7 @@ let
     "x86_64-linux" = "x64";
   }.${stdenv.hostPlatform.system};
 
-  libPath = lib.makeLibraryPath [ xorg.libX11 xorg.libXtst glib libglvnd openssl gtk3 cairo pango ];
+  libPath = lib.makeLibraryPath [ xorg.libX11 xorg.libXtst glib libglvnd openssl gtk3 cairo pango curl ];
 in let
   binaryPackage = stdenv.mkDerivation {
     pname = "${pname}-bin";