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

79 lines
1.5 KiB
Nix
Raw Normal View History

2018-02-09 11:30:09 +00:00
{ stdenv
, fetchFromGitHub
, nix-update-script
, fetchpatch
2019-03-05 21:57:51 +00:00
, cmake
2019-05-22 11:03:39 +00:00
, gdk-pixbuf
2019-03-05 21:57:51 +00:00
, gtk3
, vala
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
, wrapGAppsHook
}:
2018-02-09 11:30:09 +00:00
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 20:31:18 +00:00
ninja
pkgconfig
vala
2018-08-20 20:31:18 +00:00
wrapGAppsHook
2018-02-09 11:30:09 +00:00
];
2018-02-09 11:30:09 +00:00
buildInputs = [
2018-08-20 20:31:18 +00:00
pantheon.elementary-icon-theme
pantheon.granite
2019-05-22 11:03:39 +00: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
];
patches = [
# Fix build with Vala 0.46
# https://github.com/Philip-Scott/Spice-up/pull/288
(fetchpatch {
url = "https://patch-diff.githubusercontent.com/raw/Philip-Scott/Spice-up/pull/288.patch";
sha256 = "0kyfd8v2sk4cvcq1j8ysp64snfjhnpr3iz7l04lx7if7h372xj39";
})
];
2019-12-22 23:19:30 +00:00
passthru = {
updateScript = nix-update-script {
2019-12-22 23:19:30 +00:00
attrPath = pname;
};
};
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";
homepage = "https://github.com/Philip-Scott/Spice-up";
2020-05-08 07:08:53 +00:00
maintainers = with maintainers; [ samdroid-apps xiorcale ] ++ 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;
};
}