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

80 lines
1.5 KiB
Nix
Raw Normal View History

{ lib, stdenv
2018-02-09 12:30:09 +01:00
, fetchFromGitHub
, nix-update-script
, fetchpatch
2019-03-05 22:57:51 +01:00
, cmake
2019-05-22 13:03:39 +02:00
, gdk-pixbuf
2019-03-05 22:57:51 +01:00
, gtk3
, vala
2018-02-09 12:30:09 +01:00
, gettext
2019-03-05 22:57:51 +01:00
, ninja
, pantheon
, pkg-config
, json-glib
2018-02-09 12:30:09 +01:00
, libgudev
, libevdev
2019-03-05 22:57:51 +01:00
, libgee
2018-10-31 23:25:22 +01:00
, libsoup
, wrapGAppsHook
}:
2018-02-09 12:30:09 +01:00
stdenv.mkDerivation rec {
2019-03-05 22:57:51 +01:00
pname = "spice-up";
version = "1.8.2";
2018-02-09 12:30:09 +01:00
src = fetchFromGitHub {
owner = "Philip-Scott";
repo = "Spice-up";
rev = version;
sha256 = "1pix911l4ddn50026a5sbpqfzba6fmw40m1yzbknmkgd2ny28f0m";
2018-02-09 12:30:09 +01:00
};
2018-10-31 23:25:22 +01:00
2019-03-05 22:57:51 +01:00
USER = "pbuilder";
2018-02-09 12:30:09 +01:00
nativeBuildInputs = [
cmake
gettext
2018-08-20 22:31:18 +02:00
ninja
pkg-config
vala
2018-08-20 22:31:18 +02:00
wrapGAppsHook
2018-02-09 12:30:09 +01:00
];
2018-02-09 12:30:09 +01:00
buildInputs = [
2018-08-20 22:31:18 +02:00
pantheon.elementary-icon-theme
pantheon.granite
2019-05-22 13:03:39 +02:00
gdk-pixbuf
2018-10-31 23:25:22 +01:00
gtk3
json-glib
2018-02-09 12:30:09 +01:00
libevdev
2019-03-05 22:57:51 +01:00
libgee
2018-10-31 23:25:22 +01:00
libgudev
libsoup
2018-02-09 12:30:09 +01: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-23 00:19:30 +01:00
passthru = {
updateScript = nix-update-script {
2019-12-23 00:19:30 +01:00
attrPath = pname;
};
};
meta = with lib; {
2019-03-05 22:57:51 +01:00
description = "Create simple and beautiful presentations";
homepage = "https://github.com/Philip-Scott/Spice-up";
maintainers = with maintainers; [ samdroid-apps xiorcale ] ++ teams.pantheon.members;
2018-02-09 12:30:09 +01:00
platforms = platforms.linux;
# The COPYING file has GPLv3; some files have GPLv2+ and some have GPLv3+
license = licenses.gpl3Plus;
mainProgram = "com.github.philip-scott.spice-up";
2018-02-09 12:30:09 +01:00
};
}