about summary refs log tree commit diff
path: root/pkgs/applications/networking/gabutdm/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/networking/gabutdm/default.nix')
-rw-r--r--pkgs/applications/networking/gabutdm/default.nix69
1 files changed, 0 insertions, 69 deletions
diff --git a/pkgs/applications/networking/gabutdm/default.nix b/pkgs/applications/networking/gabutdm/default.nix
deleted file mode 100644
index cb587ea7f093f..0000000000000
--- a/pkgs/applications/networking/gabutdm/default.nix
+++ /dev/null
@@ -1,69 +0,0 @@
-{ lib
-, stdenv
-, fetchFromGitHub
-, meson
-, pkg-config
-, ninja
-, vala
-, wrapGAppsHook4
-, desktop-file-utils
-, sqlite
-, libcanberra
-, libsoup_3
-, libgee
-, json-glib
-, qrencode
-, curl
-, aria2
-}:
-
-stdenv.mkDerivation rec {
-  pname = "gabutdm";
-  version = "2.1.6";
-
-  src = fetchFromGitHub {
-    owner = "gabutakut";
-    repo = pname;
-    rev = version;
-    hash = "sha256-ai5LsoK21XwXqL4LRuKsOR1/JV6LnP+1ZJ9fMHpj178=";
-  };
-
-  nativeBuildInputs = [
-    meson
-    pkg-config
-    ninja
-    vala
-    wrapGAppsHook4
-    desktop-file-utils
-  ];
-
-  buildInputs = [
-    sqlite
-    libcanberra
-    libsoup_3
-    libgee
-    json-glib
-    qrencode
-    curl
-  ];
-
-  postPatch = ''
-    substituteInPlace meson/post_install.py \
-      --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";
-    license = licenses.lgpl21Plus;
-    mainProgram = "com.github.gabutakut.gabutdm";
-    maintainers = with maintainers; [ aleksana ];
-    platforms = platforms.unix;
-  };
-}