nixpkgs/pkgs/applications/office/khronos/default.nix

68 lines
1.1 KiB
Nix
Raw Normal View History

2021-10-16 05:15:24 +01:00
{ lib
, stdenv
2020-02-18 18:05:55 +00:00
, fetchFromGitHub
, nix-update-script
2020-02-18 18:05:55 +00:00
, meson
, ninja
, vala
, pkg-config
, desktop-file-utils
, python3
, glib
2021-09-15 01:13:13 +01:00
, gtk4
2020-02-18 18:05:55 +00:00
, json-glib
2021-09-15 01:13:13 +01:00
, libadwaita
2020-02-18 18:05:55 +00:00
, libgee
2021-10-16 05:15:24 +01:00
, wrapGAppsHook4
2020-02-18 18:05:55 +00:00
}:
stdenv.mkDerivation rec {
pname = "khronos";
2021-12-06 02:34:08 +00:00
version = "3.6.6";
2020-02-18 18:05:55 +00:00
src = fetchFromGitHub {
owner = "lainsce";
repo = pname;
rev = version;
2021-12-06 02:34:08 +00:00
sha256 = "sha256-EFoW/2IZuCo6sg7q87XRrJJ7dmYtVZr2bJQUEiiMiVI=";
2020-02-18 18:05:55 +00:00
};
nativeBuildInputs = [
desktop-file-utils
meson
ninja
vala
pkg-config
python3
2021-10-16 05:15:24 +01:00
wrapGAppsHook4
2020-02-18 18:05:55 +00:00
];
buildInputs = [
glib
2021-09-15 01:13:13 +01:00
gtk4
2020-02-18 18:05:55 +00:00
json-glib
2021-09-15 01:13:13 +01:00
libadwaita
2020-02-18 18:05:55 +00:00
libgee
];
postPatch = ''
2021-09-15 01:13:13 +01:00
chmod +x build-aux/post_install.py
patchShebangs build-aux/post_install.py
2020-02-18 18:05:55 +00:00
'';
passthru = {
updateScript = nix-update-script {
2020-02-18 18:05:55 +00:00
attrPath = pname;
};
};
meta = with lib; {
2020-02-18 18:05:55 +00:00
description = "Track each task's time in a simple inobtrusive way";
homepage = "https://github.com/lainsce/khronos";
maintainers = with maintainers; [ xiorcale ] ++ teams.pantheon.members;
2020-02-18 18:05:55 +00:00
platforms = platforms.linux;
2021-09-15 16:30:56 +01:00
license = licenses.gpl3Plus;
2021-10-29 12:15:01 +01:00
mainProgram = "io.github.lainsce.Khronos";
2020-02-18 18:05:55 +00:00
};
}