speedtest: init at 1.3.0

(cherry picked from commit 7dd004fe3c)
This commit is contained in:
seth 2024-11-12 04:43:42 -05:00 committed by github-actions[bot]
parent c58af3b25d
commit b90dd570ef

View File

@ -0,0 +1,69 @@
{
lib,
appstream-glib,
blueprint-compiler,
desktop-file-utils,
fetchFromGitHub,
glib,
gobject-introspection,
gtk4,
libadwaita,
meson,
ninja,
pkg-config,
python3Packages,
wrapGAppsHook4,
}:
python3Packages.buildPythonApplication rec {
pname = "speedtest";
version = "1.3.0";
pyproject = false;
src = fetchFromGitHub {
owner = "Ketok4321";
repo = "speedtest";
rev = "refs/tags/v${version}";
hash = "sha256-BFPOumMuFKttw8+Jp4c2d9r9C2eIzEX52SNdASdNldw=";
};
postPatch = ''
substituteInPlace meson.build \
--replace-fail "run_command('git', 'describe', '--tags', check: false).stdout().strip()" "'v${version}'"
'';
strictDeps = true;
nativeBuildInputs = [
appstream-glib
blueprint-compiler
desktop-file-utils # For `desktop-file-validate`
glib # For `glib-compile-schemas`
gobject-introspection
gtk4 # For `gtk-update-icon-cache`
meson
ninja
pkg-config
wrapGAppsHook4
];
dependencies = [
python3Packages.aiohttp
python3Packages.pygobject3
];
buildInputs = [ libadwaita ];
dontWrapGAppsHook = true;
makeWrapperArgs = [ "\${gappsWrapperArgs[@]}" ];
meta = {
description = "Graphical librespeed client written using GTK4 + libadwaita";
homepage = "https://github.com/Ketok4321/speedtest";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ getchoo ];
mainProgram = "speedtest";
platforms = lib.platforms.linux;
};
}