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

59 lines
1.1 KiB
Nix
Raw Normal View History

2018-02-09 03:30:09 -08:00
{ stdenv
, fetchFromGitHub
2019-03-05 13:57:51 -08:00
, cmake
2019-05-22 04:03:39 -07:00
, gdk-pixbuf
2019-03-05 13:57:51 -08:00
, gtk3
2018-02-09 03:30:09 -08:00
, gettext
2019-03-05 13:57:51 -08:00
, ninja
, pantheon
2018-02-09 03:30:09 -08:00
, pkgconfig
, json-glib
2018-02-09 03:30:09 -08:00
, libgudev
, libevdev
2019-03-05 13:57:51 -08:00
, libgee
2018-10-31 15:25:22 -07:00
, libsoup
2018-02-09 03:30:09 -08:00
, wrapGAppsHook }:
stdenv.mkDerivation rec {
2019-03-05 13:57:51 -08:00
pname = "spice-up";
version = "1.8.2";
2018-02-09 03:30:09 -08:00
src = fetchFromGitHub {
owner = "Philip-Scott";
repo = "Spice-up";
rev = version;
sha256 = "1pix911l4ddn50026a5sbpqfzba6fmw40m1yzbknmkgd2ny28f0m";
2018-02-09 03:30:09 -08:00
};
2018-10-31 15:25:22 -07:00
2019-03-05 13:57:51 -08:00
USER = "pbuilder";
2018-02-09 03:30:09 -08:00
nativeBuildInputs = [
cmake
gettext
2018-08-20 13:31:18 -07:00
ninja
pkgconfig
pantheon.vala
wrapGAppsHook
2018-02-09 03:30:09 -08:00
];
buildInputs = [
2018-08-20 13:31:18 -07:00
pantheon.elementary-icon-theme
pantheon.granite
2019-05-22 04:03:39 -07:00
gdk-pixbuf
2018-10-31 15:25:22 -07:00
gtk3
json-glib
2018-02-09 03:30:09 -08:00
libevdev
2019-03-05 13:57:51 -08:00
libgee
2018-10-31 15:25:22 -07:00
libgudev
libsoup
2018-02-09 03:30:09 -08:00
];
meta = with stdenv.lib; {
2019-03-05 13:57:51 -08:00
description = "Create simple and beautiful presentations";
2018-02-09 03:30:09 -08:00
homepage = https://github.com/Philip-Scott/Spice-up;
2019-03-05 13:57:51 -08:00
maintainers = with maintainers; [ samdroid-apps kjuvi ] ++ pantheon.maintainers;
2018-02-09 03:30:09 -08:00
platforms = platforms.linux;
# The COPYING file has GPLv3; some files have GPLv2+ and some have GPLv3+
license = licenses.gpl3Plus;
};
}