about summary refs log tree commit diff
path: root/pkgs/applications/office
diff options
context:
space:
mode:
authorkjuvi <quentin.vaucher@protonmail.com>2020-01-28 19:59:03 +0100
committerkjuvi <quentin.vaucher@protonmail.com>2020-01-31 10:13:31 +0100
commit008eb7cb75b8a424fd48244be4f6a205648b8941 (patch)
tree7f812495e9f7e7fc154bfc28cbc7d1ac3abd8d15 /pkgs/applications/office
parentd8cb4ed910cecad75d788f34edc7df9af03a397f (diff)
agenda: init at 1.0.12
Diffstat (limited to 'pkgs/applications/office')
-rw-r--r--pkgs/applications/office/agenda/default.nix54
1 files changed, 54 insertions, 0 deletions
diff --git a/pkgs/applications/office/agenda/default.nix b/pkgs/applications/office/agenda/default.nix
new file mode 100644
index 0000000000000..23efbf9c9b540
--- /dev/null
+++ b/pkgs/applications/office/agenda/default.nix
@@ -0,0 +1,54 @@
+{ stdenv
+, fetchFromGitHub
+, pantheon
+, cmake
+, pkg-config
+, vala
+, gettext
+, glib
+, gtk3
+, libgee
+, wrapGAppsHook
+}:
+
+stdenv.mkDerivation rec {
+  pname = "agenda";
+  version = "1.0.12";
+
+  src = fetchFromGitHub {
+    owner = "dahenson";
+    repo = pname;
+    rev = version;
+    sha256 = "128c9p2jkc90imlq25xg5alqlam8q4i3gd5p1kcggf7s4amv8l8w";
+  };
+
+  nativeBuildInputs = [
+    cmake
+    gettext
+    vala
+    pkg-config
+    wrapGAppsHook
+  ];
+
+  buildInputs = [
+    glib
+    gtk3
+    libgee
+    pantheon.granite
+  ];
+
+  passthru = {
+    updateScript = pantheon.updateScript {
+      attrPath = pname;
+    };
+  };
+
+  meta = with stdenv.lib; {
+    description = "A simple, fast, no-nonsense to-do (task) list designed for elementary OS";
+    homepage = https://github.com/dahenson/agenda;
+    maintainers = with maintainers; [ kjuvi ] ++ pantheon.maintainers;
+    platforms = platforms.linux;
+    license = licenses.gpl3;
+  };
+}
+