agenda: 1.0.12 -> 1.1.0

https://github.com/dahenson/agenda/releases/tag/1.1.0
This commit is contained in:
worldofpeace 2020-04-16 01:00:44 -04:00
parent 67413f6eea
commit e4dc205023

View File

@ -1,7 +1,9 @@
{ stdenv
, fetchFromGitHub
, pantheon
, cmake
, meson
, ninja
, python3
, pkg-config
, vala
, gettext
@ -13,20 +15,23 @@
stdenv.mkDerivation rec {
pname = "agenda";
version = "1.0.12";
version = "1.1.0";
src = fetchFromGitHub {
owner = "dahenson";
repo = pname;
rev = version;
sha256 = "128c9p2jkc90imlq25xg5alqlam8q4i3gd5p1kcggf7s4amv8l8w";
sha256 = "0yfapapsanqacaa83iagar88i335yy2jvay8y6z7gkri7avbs4am";
};
nativeBuildInputs = [
cmake
gettext
vala
glib # for glib-compile-schemas
meson
ninja
pkg-config
python3
vala
wrapGAppsHook
];
@ -37,6 +42,13 @@ stdenv.mkDerivation rec {
pantheon.granite
];
postPatch = ''
chmod +x meson/post_install.py
patchShebangs meson/post_install.py
'';
doCheck = true;
passthru = {
updateScript = pantheon.updateScript {
attrPath = pname;