Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

52 lines
947 B
Nix
Raw Permalink Normal View History

2023-11-17 20:13:39 +01:00
{
stdenv,
lib,
fetchFromGitea,
blueprint-compiler,
desktop-file-utils,
glib,
gtk4,
libadwaita,
meson,
ninja,
pkg-config,
wrapGAppsHook4,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "door-knocker";
2025-03-16 12:55:57 +00:00
version = "0.7.0";
2023-11-17 20:13:39 +01:00
src = fetchFromGitea {
domain = "codeberg.org";
owner = "tytan652";
repo = "door-knocker";
rev = finalAttrs.version;
2025-03-16 12:55:57 +00:00
hash = "sha256-6QHjmjR2ioR0I6JXtJ0Q+9Dl1fcTnQCGgWlcyFt9WoA=";
2023-11-17 20:13:39 +01:00
};
nativeBuildInputs = [
meson
ninja
pkg-config
desktop-file-utils
blueprint-compiler
wrapGAppsHook4
];
buildInputs = [
glib
gtk4
libadwaita
];
meta = with lib; {
description = "Tool to check the availability of portals";
homepage = "https://codeberg.org/tytan652/door-knocker";
license = licenses.gpl3Plus;
2023-12-23 12:00:00 +00:00
maintainers = with maintainers; [ symphorien ];
2023-11-17 20:13:39 +01:00
platforms = platforms.linux;
2023-12-23 12:00:00 +00:00
mainProgram = "door-knocker";
2023-11-17 20:13:39 +01:00
};
})