nixpkgs/pkgs/applications/office/spice-up/default.nix

58 lines
1.1 KiB
Nix
Raw Normal View History

2018-02-09 11:30:09 +00:00
{ stdenv
, fetchFromGitHub
, gettext
, libxml2
, pkgconfig
, gtk3
, granite
, gnome3
2018-03-22 14:21:05 +00:00
, gobjectIntrospection
, json-glib
2018-02-09 11:30:09 +00:00
, cmake
, ninja
, libgudev
, libevdev
, vala
, wrapGAppsHook }:
stdenv.mkDerivation rec {
name = "spice-up-${version}";
2018-02-21 06:11:23 +00:00
version = "1.3.2";
2018-02-09 11:30:09 +00:00
src = fetchFromGitHub {
owner = "Philip-Scott";
repo = "Spice-up";
rev = version;
2018-02-21 06:11:23 +00:00
sha256 = "087cdi7na93pgz7vf046h94v5ydvpiccpwhllq85ix8g4pa5rp85";
2018-02-09 11:30:09 +00:00
};
USER = "nix-build-user";
nativeBuildInputs = [
pkgconfig
wrapGAppsHook
vala
cmake
ninja
gettext
libxml2
2018-03-22 14:21:05 +00:00
gobjectIntrospection # For setup hook
2018-02-09 11:30:09 +00:00
];
buildInputs = [
gtk3
granite
gnome3.libgee
json-glib
2018-02-09 11:30:09 +00:00
libgudev
libevdev
];
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;
};
}