Merge pull request #230759 from Aleksanaa/gabutdm
gabutdm: init at 2.1.5
This commit is contained in:
commit
9c7cc80425
64
pkgs/applications/networking/gabutdm/default.nix
Normal file
64
pkgs/applications/networking/gabutdm/default.nix
Normal file
@ -0,0 +1,64 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, meson
|
||||
, pkg-config
|
||||
, cmake
|
||||
, ninja
|
||||
, vala
|
||||
, wrapGAppsHook4
|
||||
, desktop-file-utils
|
||||
, sqlite
|
||||
, libcanberra
|
||||
, libsoup_3
|
||||
, libgee
|
||||
, json-glib
|
||||
, qrencode
|
||||
, curl
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "gabutdm";
|
||||
version = "2.1.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "gabutakut";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
hash = "sha256-8fV7STYSpmNnLyoAjz+RuF/0nFeNiu8AIxkON1MbWr4=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
meson
|
||||
pkg-config
|
||||
cmake
|
||||
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
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Simple and faster download manager";
|
||||
homepage = "https://github.com/gabutakut/gabutdm";
|
||||
license = licenses.lgpl21Plus;
|
||||
mainProgram = "com.github.gabutakut.gabutdm";
|
||||
maintainers = with maintainers; [ aleksana ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
@ -1503,6 +1503,8 @@ with pkgs;
|
||||
|
||||
copier = callPackage ../tools/misc/copier { };
|
||||
|
||||
gabutdm = callPackage ../applications/networking/gabutdm { };
|
||||
|
||||
gamemode = callPackage ../tools/games/gamemode {
|
||||
libgamemode32 = pkgsi686Linux.gamemode.lib;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user