summary refs log tree commit diff
path: root/pkgs/applications/office
diff options
context:
space:
mode:
authorSam Parkinson <sam@sam.today>2018-02-09 22:30:09 +1100
committerSam Parkinson <sam@sam.today>2018-02-09 22:30:09 +1100
commit8a7fd9d41f06606ae83d7ef0c8af46ff7aafed7d (patch)
tree480c41fea449cebc84503c01878929019e9792f0 /pkgs/applications/office
parent197d9a8d901ee51e64f8f5947a7be9f2f4c30789 (diff)
downloadnixlib-8a7fd9d41f06606ae83d7ef0c8af46ff7aafed7d.tar
nixlib-8a7fd9d41f06606ae83d7ef0c8af46ff7aafed7d.tar.gz
nixlib-8a7fd9d41f06606ae83d7ef0c8af46ff7aafed7d.tar.bz2
nixlib-8a7fd9d41f06606ae83d7ef0c8af46ff7aafed7d.tar.lz
nixlib-8a7fd9d41f06606ae83d7ef0c8af46ff7aafed7d.tar.xz
nixlib-8a7fd9d41f06606ae83d7ef0c8af46ff7aafed7d.tar.zst
nixlib-8a7fd9d41f06606ae83d7ef0c8af46ff7aafed7d.zip
spice-up: init at 1.2.1
Diffstat (limited to 'pkgs/applications/office')
-rw-r--r--pkgs/applications/office/spice-up/default.nix61
1 files changed, 61 insertions, 0 deletions
diff --git a/pkgs/applications/office/spice-up/default.nix b/pkgs/applications/office/spice-up/default.nix
new file mode 100644
index 000000000000..88b65be07656
--- /dev/null
+++ b/pkgs/applications/office/spice-up/default.nix
@@ -0,0 +1,61 @@
+{ stdenv
+, fetchFromGitHub
+, gettext
+, libxml2
+, pkgconfig
+, gtk3
+, granite
+, gnome3
+, json_glib
+, cmake
+, ninja
+, libgudev
+, libevdev
+, vala
+, wrapGAppsHook }:
+
+stdenv.mkDerivation rec {
+  name = "spice-up-${version}";
+  version = "1.2.1";
+
+  src = fetchFromGitHub {
+    owner = "Philip-Scott";
+    repo = "Spice-up";
+    rev = version;
+    sha256 = "0cbyhi6d99blv33183j6nakzcqxz5hqy9ijykiasbmdycfd5q0fh";
+  };
+  USER = "nix-build-user";
+
+  XDG_DATA_DIRS = stdenv.lib.concatStringsSep ":" [
+    "${granite}/share"
+    "${gnome3.libgee}/share"
+  ];
+
+  nativeBuildInputs = [
+    pkgconfig
+    wrapGAppsHook
+    vala
+    cmake
+    ninja
+    gettext
+    libxml2
+  ];
+  buildInputs = [
+    gtk3
+    granite
+    gnome3.libgee
+    json_glib
+    libgudev
+    libevdev
+    gnome3.gnome_themes_standard
+  ];
+
+  meta = with stdenv.lib; {
+    description = "Create simple and beautiful presentations on the Linux desktop";
+    homepage = https://github.com/Philip-Scott/Spice-up;
+    maintainers = with maintainers; [ samdroid-apps ];
+    platforms = platforms.linux;
+    # The COPYING file has GPLv3; some files have GPLv2+ and some have GPLv3+
+    license = licenses.gpl3Plus;
+  };
+}