summary refs log tree commit diff
path: root/pkgs/applications/editors/vscode
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2020-08-12 20:11:51 +0200
committerFlorian Klink <flokli@flokli.de>2020-08-13 20:51:40 +0200
commit789749598a3e7678dad4e30f0f8e2d4f319b6c15 (patch)
tree82dc27acd10d580d7ef14209998425e246413286 /pkgs/applications/editors/vscode
parent6585998a92652dfa3d1f6086ce84c8512d11f02d (diff)
downloadnixpkgs-789749598a3e7678dad4e30f0f8e2d4f319b6c15.tar
nixpkgs-789749598a3e7678dad4e30f0f8e2d4f319b6c15.tar.gz
nixpkgs-789749598a3e7678dad4e30f0f8e2d4f319b6c15.tar.bz2
nixpkgs-789749598a3e7678dad4e30f0f8e2d4f319b6c15.tar.lz
nixpkgs-789749598a3e7678dad4e30f0f8e2d4f319b6c15.tar.xz
nixpkgs-789749598a3e7678dad4e30f0f8e2d4f319b6c15.tar.zst
nixpkgs-789749598a3e7678dad4e30f0f8e2d4f319b6c15.zip
vscode: use lib.getLib systemd instead of systemd.lib
This will pick the `lib` output if it exists, otherwise default to `out`.
Diffstat (limited to 'pkgs/applications/editors/vscode')
-rw-r--r--pkgs/applications/editors/vscode/generic.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/editors/vscode/generic.nix b/pkgs/applications/editors/vscode/generic.nix
index 38d695bd74a..57bd73d6019 100644
--- a/pkgs/applications/editors/vscode/generic.nix
+++ b/pkgs/applications/editors/vscode/generic.nix
@@ -62,7 +62,7 @@ in
       else [ gtk2 at-spi2-atk wrapGAppsHook ] ++ atomEnv.packages)
         ++ [ libsecret libXScrnSaver ];
 
-    runtimeDependencies = lib.optional (stdenv.isLinux) [ systemd.lib fontconfig.lib ];
+    runtimeDependencies = lib.optional (stdenv.isLinux) [ (lib.getLib systemd) fontconfig.lib ];
 
     nativeBuildInputs = lib.optional (!stdenv.isDarwin) autoPatchelfHook;