spice-up: 1.8.2 -> 1.9.1

This commit is contained in:
Bobby Rong 2022-01-14 12:29:26 +08:00
parent 7d5300d2f2
commit ff372d0ef1
No known key found for this signature in database
GPG key ID: ED07364437C91161

View file

@ -1,65 +1,59 @@
{ lib, stdenv
{ lib
, stdenv
, fetchFromGitHub
, nix-update-script
, fetchpatch
, cmake
, gdk-pixbuf
, gtk3
, vala
, gettext
, meson
, ninja
, pantheon
, pkg-config
, python3
, vala
, wrapGAppsHook
, glib
, gtk3
, json-glib
, libgudev
, libevdev
, libgee
, libgudev
, libsoup
, wrapGAppsHook
, pantheon
}:
stdenv.mkDerivation rec {
pname = "spice-up";
version = "1.8.2";
version = "1.9.1";
src = fetchFromGitHub {
owner = "Philip-Scott";
repo = "Spice-up";
rev = version;
sha256 = "1pix911l4ddn50026a5sbpqfzba6fmw40m1yzbknmkgd2ny28f0m";
sha256 = "sha256-FI6YMbqZfaU19k8pS2eoNCnX8O8F99SHHOxMwHC5fTc=";
};
USER = "pbuilder";
nativeBuildInputs = [
cmake
gettext
meson
ninja
pkg-config
python3
vala
wrapGAppsHook
];
buildInputs = [
pantheon.elementary-icon-theme
pantheon.granite
gdk-pixbuf
glib
gtk3
json-glib
libevdev
libgee
libgudev
libsoup
pantheon.elementary-icon-theme
pantheon.granite
];
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";
})
];
postPatch = ''
chmod +x meson/post_install.py
patchShebangs meson/post_install.py
'';
passthru = {
updateScript = nix-update-script {
@ -74,6 +68,6 @@ stdenv.mkDerivation rec {
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";
mainProgram = "com.github.philip_scott.spice-up";
};
}