summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/networking/gabutdm
diff options
context:
space:
mode:
authoraleksana <me@aleksana.moe>2024-03-24 23:28:40 +0800
committeraleksana <me@aleksana.moe>2024-03-26 13:01:46 +0800
commit4cd214eddebd53012a0f125a8fab4a9643dcae46 (patch)
tree34fec14499b6e99e8d5edd1bfd0420dc93de7a52 /pkgs/applications/networking/gabutdm
parent92bed1399815bcbe85def8b3e82ad4c68332ba20 (diff)
gabutdm: add aria2 to wrapper path
Diffstat (limited to 'pkgs/applications/networking/gabutdm')
-rw-r--r--pkgs/applications/networking/gabutdm/default.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/pkgs/applications/networking/gabutdm/default.nix b/pkgs/applications/networking/gabutdm/default.nix
index 6fbe0222112c..0cd0985e840c 100644
--- a/pkgs/applications/networking/gabutdm/default.nix
+++ b/pkgs/applications/networking/gabutdm/default.nix
@@ -15,6 +15,7 @@
, json-glib
, qrencode
, curl
+, aria2
}:
stdenv.mkDerivation rec {
@@ -53,6 +54,12 @@ stdenv.mkDerivation rec {
--replace gtk-update-icon-cache gtk4-update-icon-cache
'';
+ preFixup = ''
+ gappsWrapperArgs+=(
+ --prefix PATH : ${lib.makeBinPath [ aria2 ]}
+ )
+ '';
+
meta = with lib; {
description = "Simple and fast download manager";
homepage = "https://github.com/gabutakut/gabutdm";