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

63 lines
1022 B
Nix
Raw Normal View History

2019-06-25 21:24:50 +00:00
{ stdenv
, fetchFromGitHub
, glib
, gtk3
, vala
2019-06-25 21:24:50 +00:00
, json-glib
, libgee
, meson
, ninja
, pkgconfig
, pantheon
, python3
, wrapGAppsHook
}:
stdenv.mkDerivation rec {
pname = "timetable";
2019-10-04 09:59:55 +00:00
version = "1.0.9";
2019-06-25 21:24:50 +00:00
src = fetchFromGitHub {
owner = "lainsce";
repo = pname;
rev = version;
2019-10-04 09:59:55 +00:00
sha256 = "1n02y7vpi4lb888iic06xifc86n2xirk50s1ssf84vlc5md1kq9f";
2019-06-25 21:24:50 +00:00
};
nativeBuildInputs = [
meson
ninja
pkgconfig
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 = pantheon.updateScript {
attrPath = pname;
};
};
2019-06-25 21:24:50 +00:00
meta = with stdenv.lib; {
description = "Plot out your own timetable for the week and organize it";
homepage = "https://github.com/lainsce/timetable";
maintainers = [ maintainers.kjuvi ] ++ pantheon.maintainers;
license = licenses.gpl2Plus;
};
}