about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/beeper
diff options
context:
space:
mode:
authorMartino Fontana <tinozzo123@gmail.com>2024-05-01 14:42:20 +0200
committerMartino Fontana <tinozzo123@gmail.com>2024-05-13 20:35:07 +0200
commit6e465f4550a54414cda068d6dca8c7820a660b6b (patch)
tree4479b42acf1166948ad9d493f54a3f5f044ca497 /pkgs/applications/networking/instant-messengers/beeper
parent1ee25e4d13221b9303bd66dafaa791f6759b24c2 (diff)
treewide: fix use of `extraPkgs` in AppImages
Mostly removes unnecessary use of `extraPkgs = pkgs: appimageTools.defaultFhsEnvArgs.multiPkgs pkgs;`
This caused some packages to be listed twice.

Also, fix some styling, and accidental use of top-level packages (sometimes due to the `with;` keyword, e.g. on `beeper`).
Remove inclusions of `bash`, since `bashInteractive` is already present by default.
Diffstat (limited to 'pkgs/applications/networking/instant-messengers/beeper')
-rw-r--r--pkgs/applications/networking/instant-messengers/beeper/default.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/applications/networking/instant-messengers/beeper/default.nix b/pkgs/applications/networking/instant-messengers/beeper/default.nix
index 2d70e6a75ea7c..3651408c8b7fc 100644
--- a/pkgs/applications/networking/instant-messengers/beeper/default.nix
+++ b/pkgs/applications/networking/instant-messengers/beeper/default.nix
@@ -2,7 +2,6 @@
 , stdenvNoCC
 , fetchurl
 , appimageTools
-, libsecret
 , makeWrapper
 , writeShellApplication
 , curl
@@ -19,7 +18,7 @@ let
   };
   appimage = appimageTools.wrapType2 {
     inherit version pname src;
-    extraPkgs = pkgs: with pkgs; [ libsecret ];
+    extraPkgs = pkgs: [ pkgs.libsecret ];
   };
   appimageContents = appimageTools.extractType2 {
     inherit version pname src;