mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 07:31:20 +00:00
commit
c2948f640b
57
pkgs/applications/office/timetable/default.nix
Normal file
57
pkgs/applications/office/timetable/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -6217,6 +6217,8 @@ in
|
||||||
|
|
||||||
timetrap = callPackage ../applications/office/timetrap { };
|
timetrap = callPackage ../applications/office/timetrap { };
|
||||||
|
|
||||||
|
timetable = callPackage ../applications/office/timetable { };
|
||||||
|
|
||||||
tzupdate = callPackage ../applications/misc/tzupdate { };
|
tzupdate = callPackage ../applications/misc/tzupdate { };
|
||||||
|
|
||||||
tinc = callPackage ../tools/networking/tinc { };
|
tinc = callPackage ../tools/networking/tinc { };
|
||||||
|
|
Loading…
Reference in a new issue