Skip to content

Commit

Permalink
spice-up: 1.7.0 -> 1.8.0
Browse files Browse the repository at this point in the history
(cherry picked from commit f271f94)
Fixed build.

ZHF: #56826
  • Loading branch information
xiorcale authored and worldofpeace committed Mar 5, 2019
1 parent dcaf6f4 commit 8d9f70e
Showing 1 changed file with 14 additions and 16 deletions.
30 changes: 14 additions & 16 deletions pkgs/applications/office/spice-up/default.nix
Original file line number Diff line number Diff line change
@@ -1,38 +1,35 @@
{ stdenv
, fetchFromGitHub
, cmake
, gdk_pixbuf
, gtk3
, gettext
, libxml2
, ninja
, pantheon
, pkgconfig
, gtk3
, gnome3
, gobject-introspection
, json-glib
, cmake
, ninja
, libgudev
, libevdev
, libgee
, libsoup
, pantheon
, wrapGAppsHook }:

stdenv.mkDerivation rec {
name = "spice-up-${version}";
version = "1.7.0";
pname = "spice-up";
version = "1.8.0";

src = fetchFromGitHub {
owner = "Philip-Scott";
repo = "Spice-up";
rev = version;
sha256 = "1qb1hlw7g581dmgg5mh832ixjkcgqm3lqzj6xma2cz8wdncwwjaq";
sha256 = "0jbqgf936pqss8ha27fcyjbhvkn4ij96b3d87c6gcx90glmq33zb";
};

USER = "nix-build-user";
USER = "pbuilder";

nativeBuildInputs = [
cmake
gettext
gobject-introspection # For setup hook
libxml2
ninja
pkgconfig
pantheon.vala
Expand All @@ -41,18 +38,19 @@ stdenv.mkDerivation rec {
buildInputs = [
pantheon.elementary-icon-theme
pantheon.granite
gnome3.libgee
gdk_pixbuf
gtk3
json-glib
libevdev
libgee
libgudev
libsoup
];

meta = with stdenv.lib; {
description = "Create simple and beautiful presentations on the Linux desktop";
description = "Create simple and beautiful presentations";
homepage = https://github.com/Philip-Scott/Spice-up;
maintainers = with maintainers; [ samdroid-apps ];
maintainers = with maintainers; [ samdroid-apps kjuvi ] ++ pantheon.maintainers;
platforms = platforms.linux;
# The COPYING file has GPLv3; some files have GPLv2+ and some have GPLv3+
license = licenses.gpl3Plus;
Expand Down

5 comments on commit 8d9f70e

@pbogdan
Copy link
Member

@pbogdan pbogdan commented on 8d9f70e Mar 5, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just a heads up this seems to be breaking evaluation as the newly added maintainer (kjuvi) is not defined on release-19.03.

@worldofpeace
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@pbogdan Ahh missed that, I'll backport that as well.

@worldofpeace
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@pbogdan
Copy link
Member

@pbogdan pbogdan commented on 8d9f70e Mar 5, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks!

@worldofpeace
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No problem 👍

Please sign in to comment.