Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

79 lines
1.3 KiB
Nix

{
stdenv,
lib,
fetchFromGitHub,
appstream-glib,
desktop-file-utils,
meson,
ninja,
pantheon,
pkg-config,
python3,
vala,
wrapGAppsHook3,
cairo,
glib,
goocanvas3,
gtk3,
gtksourceview3,
json-glib,
libarchive,
libgee,
libxml2,
}:
stdenv.mkDerivation rec {
pname = "akira";
version = "0.0.16";
src = fetchFromGitHub {
owner = "akiraux";
repo = "Akira";
tag = "v${version}";
sha256 = "sha256-qrqmSCwA0kQVFD1gzutks9gMr7My7nw/KJs/VPisa0w=";
};
nativeBuildInputs = [
appstream-glib
desktop-file-utils
meson
ninja
pkg-config
python3
vala
wrapGAppsHook3
];
buildInputs = [
cairo
glib
goocanvas3
pantheon.granite
gtk3
gtksourceview3
json-glib
libarchive
libgee
libxml2
];
mesonFlags = [ "-Dprofile=default" ];
postPatch = ''
chmod +x build-aux/meson/post_install.py
patchShebangs build-aux/meson/post_install.py
'';
meta = with lib; {
description = "Native Linux Design application built in Vala and GTK";
homepage = "https://github.com/akiraux/Akira";
license = licenses.gpl3Plus;
maintainers = with maintainers; [
Br1ght0ne
];
teams = [ teams.pantheon ];
platforms = platforms.linux;
mainProgram = "com.github.akiraux.akira";
};
}