Skip to content

Commit

Permalink
agenda: 1.0.12 -> 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
worldofpeace committed Apr 16, 2020
1 parent 67413f6 commit e4dc205
Showing 1 changed file with 17 additions and 5 deletions.
22 changes: 17 additions & 5 deletions pkgs/applications/office/agenda/default.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
{ stdenv
, fetchFromGitHub
, pantheon
, cmake
, meson
, ninja
, python3
, pkg-config
, vala
, gettext
Expand All @@ -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
];

Expand All @@ -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;
Expand Down

0 comments on commit e4dc205

Please sign in to comment.