58 lines
973 B
Nix
58 lines
973 B
Nix
{ 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;
|
|
};
|
|
}
|