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

64 lines
1 KiB
Nix
Raw Normal View History

{ lib, stdenv
2019-06-25 21:24:50 +00:00
, fetchFromGitHub
, nix-update-script
2019-06-25 21:24:50 +00:00
, glib
, gtk3
, vala
2019-06-25 21:24:50 +00:00
, json-glib
, libgee
, meson
, ninja
, pkg-config
2019-06-25 21:24:50 +00:00
, pantheon
, python3
, wrapGAppsHook
}:
stdenv.mkDerivation rec {
pname = "timetable";
2020-01-27 22:41:19 +00:00
version = "1.1.0";
2019-06-25 21:24:50 +00:00
src = fetchFromGitHub {
owner = "lainsce";
repo = pname;
rev = version;
2020-01-27 22:41:19 +00:00
sha256 = "12c8kdrbz6x2mlrvr0nq9y5khj0qiiwlxf7aqc2z3dnrawjgy1rb";
2019-06-25 21:24:50 +00:00
};
nativeBuildInputs = [
meson
ninja
pkg-config
vala
2019-06-25 21:24:50 +00:00
python3
wrapGAppsHook
];
buildInputs = [
glib
gtk3
json-glib
libgee
pantheon.granite
];
postPatch = ''
chmod +x meson/post_install.py
patchShebangs meson/post_install.py
'';
2019-12-22 23:19:30 +00:00
passthru = {
updateScript = nix-update-script {
2019-12-22 23:19:30 +00:00
attrPath = pname;
};
};
meta = with lib; {
2019-06-25 21:24:50 +00:00
description = "Plot out your own timetable for the week and organize it";
homepage = "https://github.com/lainsce/timetable";
2020-05-08 07:08:53 +00:00
maintainers = [ maintainers.xiorcale ] ++ pantheon.maintainers;
2019-06-25 21:24:50 +00:00
license = licenses.gpl2Plus;
};
}