Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
70 lines
1.5 KiB
Nix
70 lines
1.5 KiB
Nix
{
|
|||
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;
|
|||
};
|
|||
}
|