mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +00:00
eb04659fc2
This was achieved using the following command: sd 'wrapGAppsHook\b' wrapGAppsHook3 (rg -l 'wrapGAppsHook\b') And then manually reverted the following changes: - alias in top-level.nix - function name in wrap-gapps-hook.sh - comment in postFixup of at-spi2-core - comment in gtk4 - comment in preFixup of 1password-gui/linux.nix - comment in postFixup of qgis/unwrapped-ltr.nix and qgis/unwrapped.nix - comment in postFixup of telegram-desktop - comment in postFixup of fwupd - buildCommand of mongodb-compass - postFixup of xflux-gui - comment in a patch in kdePackages.kde-gtk-config and plasma5Packages.kde-gtk-config - description of programs.sway.wrapperFeatures.gtk NixOS option (manual rebuild)
75 lines
1.3 KiB
Nix
75 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";
|
|
rev = "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 neonfuz ] ++ teams.pantheon.members;
|
|
platforms = platforms.linux;
|
|
mainProgram = "com.github.akiraux.akira";
|
|
};
|
|
}
|