diff options
author | Aylur <[email protected]> | 2024-12-19 23:44:18 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2024-12-19 23:44:18 +0100 |
commit | c34349ca44c4e43bf2c58b3e2e4f1f9e39358b53 (patch) | |
tree | 604bdece8e3fe3bd2a286ab1e8ef07dd8d90c37c /nix/appmenu-glib.nix | |
parent | 4f47b69946dd7127ba66e6333af4945afaba15de (diff) | |
parent | c5664e2941b33609de0743a8475a40b24522a3dc (diff) |
Merge pull request #68 from Aylur/feat/tray-gtk4
tray: gtk4 compatibility
Diffstat (limited to 'nix/appmenu-glib.nix')
-rw-r--r-- | nix/appmenu-glib.nix | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/nix/appmenu-glib.nix b/nix/appmenu-glib.nix new file mode 100644 index 0000000..873fb93 --- /dev/null +++ b/nix/appmenu-glib.nix @@ -0,0 +1,35 @@ +{ + stdenv, + fetchFromGitLab, + pkg-config, + meson, + ninja, + gobject-introspection, + vala, + glib, +}: let + vala-panel-appmenu = fetchFromGitLab { + owner = "vala-panel-project"; + repo = "vala-panel-appmenu"; + rev = "24.05"; + hash = "sha256-8GWauw7r3zKhvGF2TNOI8GDVctUFDhtG/Vy1cNUpsVo="; + }; +in + stdenv.mkDerivation { + pname = "appmenu-glib-translator"; + version = "24.05"; + + src = "${vala-panel-appmenu}/subprojects/appmenu-glib-translator"; + + buildInputs = [ + glib + ]; + + nativeBuildInputs = [ + gobject-introspection + meson + pkg-config + ninja + vala + ]; + } |