1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-28 08:31:59 +00:00
nixpkgs/pkgs/applications/office/spice-up/default.nix

59 lines
1.1 KiB
Nix
Raw Normal View History

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