Merge pull request #63788 from Kjuvi/master

timetable: init at 1.0.6
This commit is contained in:
worldofpeace 2019-06-26 17:32:42 -04:00 committed by GitHub
commit c2948f640b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 59 additions and 0 deletions

View File

@ -0,0 +1,57 @@
{ stdenv
, fetchFromGitHub
, glib
, gtk3
, hicolor-icon-theme
, json-glib
, libgee
, meson
, ninja
, pkgconfig
, pantheon
, python3
, wrapGAppsHook
}:
stdenv.mkDerivation rec {
pname = "timetable";
version = "1.0.6";
src = fetchFromGitHub {
owner = "lainsce";
repo = pname;
rev = version;
sha256 = "080xgp917v6j40qxy0y1iycz01yylbcr8pahx6zd6mpi022ccfv0";
};
nativeBuildInputs = [
meson
ninja
pkgconfig
pantheon.vala
python3
wrapGAppsHook
];
buildInputs = [
glib
gtk3
hicolor-icon-theme
json-glib
libgee
pantheon.granite
];
postPatch = ''
chmod +x meson/post_install.py
patchShebangs meson/post_install.py
'';
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;
};
}

View File

@ -6217,6 +6217,8 @@ in
timetrap = callPackage ../applications/office/timetrap { };
timetable = callPackage ../applications/office/timetable { };
tzupdate = callPackage ../applications/misc/tzupdate { };
tinc = callPackage ../tools/networking/tinc { };