mirror of
https://github.com/Misterio77/Foundry.git
synced 2026-08-24 10:04:09 -05:00
62 lines
1.4 KiB
Nix
62 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
python3Packages,
|
|
khal,
|
|
gobject-introspection,
|
|
gsettings-desktop-schemas,
|
|
gtk4,
|
|
libadwaita,
|
|
wrapGAppsHook4,
|
|
}:
|
|
python3Packages.buildPythonApplication {
|
|
pname = "gtkhal";
|
|
version = "0.1.0";
|
|
pyproject = true;
|
|
|
|
src = lib.fileset.toSource {
|
|
root = ./.;
|
|
fileset = lib.fileset.unions [
|
|
./data
|
|
./README.md
|
|
./pyproject.toml
|
|
./gtkhal
|
|
./tests
|
|
];
|
|
};
|
|
|
|
build-system = [python3Packages.setuptools];
|
|
dependencies = [
|
|
khal
|
|
python3Packages.pygobject3
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
gobject-introspection
|
|
wrapGAppsHook4
|
|
];
|
|
buildInputs = [
|
|
gtk4
|
|
libadwaita
|
|
];
|
|
nativeCheckInputs = [python3Packages.pytestCheckHook];
|
|
|
|
shellHook = ''
|
|
export XDG_DATA_DIRS="${gsettings-desktop-schemas}/share/gsettings-schemas/${gsettings-desktop-schemas.name}:${gtk4}/share/gsettings-schemas/${gtk4.name}:$XDG_DATA_DIRS"
|
|
'';
|
|
|
|
postInstall = ''
|
|
install -Dm644 data/rs.m7.Gtkhal.desktop \
|
|
$out/share/applications/rs.m7.Gtkhal.desktop
|
|
install -Dm644 data/rs.m7.Gtkhal.svg \
|
|
$out/share/icons/hicolor/scalable/apps/rs.m7.Gtkhal.svg
|
|
'';
|
|
|
|
meta = {
|
|
description = "Graphical calendar for local vdirs";
|
|
homepage = "https://github.com/misterio77/Foundry/tree/main/projects/gtkhal";
|
|
license = lib.licenses.bsd2;
|
|
mainProgram = "gtkhal";
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|