3
0
Fork 0
forked from mirrors/nixpkgs

spice-up: init at 1.2.1

This commit is contained in:
Sam Parkinson 2018-02-09 22:30:09 +11:00
parent 197d9a8d90
commit 8a7fd9d41f
No known key found for this signature in database
GPG key ID: 34E268B2FA2F8B13
2 changed files with 63 additions and 0 deletions

View file

@ -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;
};
}

View file

@ -11090,6 +11090,8 @@ with pkgs;
spice_protocol = callPackage ../development/libraries/spice-protocol { };
spice-up = callPackage ../applications/office/spice-up { };
sratom = callPackage ../development/libraries/audio/sratom { };
srm = callPackage ../tools/security/srm { };