mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 22:32:58 +03:00
Merge pull request #56915 from Kjuvi/spice-up-update
spice-up: 1.7.0 -> 1.8.0
This commit is contained in:
commit
5b3507b4e7
@ -1,38 +1,35 @@
|
|||||||
{ stdenv
|
{ stdenv
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, gettext
|
|
||||||
, libxml2
|
|
||||||
, pkgconfig
|
|
||||||
, gtk3
|
|
||||||
, gnome3
|
|
||||||
, gobject-introspection
|
|
||||||
, json-glib
|
|
||||||
, cmake
|
, cmake
|
||||||
|
, gdk_pixbuf
|
||||||
|
, gtk3
|
||||||
|
, gettext
|
||||||
, ninja
|
, ninja
|
||||||
|
, pantheon
|
||||||
|
, pkgconfig
|
||||||
|
, json-glib
|
||||||
, libgudev
|
, libgudev
|
||||||
, libevdev
|
, libevdev
|
||||||
|
, libgee
|
||||||
, libsoup
|
, libsoup
|
||||||
, pantheon
|
|
||||||
, wrapGAppsHook }:
|
, wrapGAppsHook }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "spice-up-${version}";
|
pname = "spice-up";
|
||||||
version = "1.7.0";
|
version = "1.8.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "Philip-Scott";
|
owner = "Philip-Scott";
|
||||||
repo = "Spice-up";
|
repo = "Spice-up";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "1qb1hlw7g581dmgg5mh832ixjkcgqm3lqzj6xma2cz8wdncwwjaq";
|
sha256 = "0jbqgf936pqss8ha27fcyjbhvkn4ij96b3d87c6gcx90glmq33zb";
|
||||||
};
|
};
|
||||||
|
|
||||||
USER = "nix-build-user";
|
USER = "pbuilder";
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
cmake
|
cmake
|
||||||
gettext
|
gettext
|
||||||
gobject-introspection # For setup hook
|
|
||||||
libxml2
|
|
||||||
ninja
|
ninja
|
||||||
pkgconfig
|
pkgconfig
|
||||||
pantheon.vala
|
pantheon.vala
|
||||||
@ -41,18 +38,19 @@ stdenv.mkDerivation rec {
|
|||||||
buildInputs = [
|
buildInputs = [
|
||||||
pantheon.elementary-icon-theme
|
pantheon.elementary-icon-theme
|
||||||
pantheon.granite
|
pantheon.granite
|
||||||
gnome3.libgee
|
gdk_pixbuf
|
||||||
gtk3
|
gtk3
|
||||||
json-glib
|
json-glib
|
||||||
libevdev
|
libevdev
|
||||||
|
libgee
|
||||||
libgudev
|
libgudev
|
||||||
libsoup
|
libsoup
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Create simple and beautiful presentations on the Linux desktop";
|
description = "Create simple and beautiful presentations";
|
||||||
homepage = https://github.com/Philip-Scott/Spice-up;
|
homepage = https://github.com/Philip-Scott/Spice-up;
|
||||||
maintainers = with maintainers; [ samdroid-apps ];
|
maintainers = with maintainers; [ samdroid-apps kjuvi ] ++ pantheon.maintainers;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
# The COPYING file has GPLv3; some files have GPLv2+ and some have GPLv3+
|
# The COPYING file has GPLv3; some files have GPLv2+ and some have GPLv3+
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
|
Loading…
Reference in New Issue
Block a user