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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

71 lines
1.2 KiB
Nix
Raw Normal View History

2022-01-14 04:29:26 +00:00
{ lib
, stdenv
2018-02-09 11:30:09 +00:00
, fetchFromGitHub
, nix-update-script
2022-01-14 04:29:26 +00:00
, meson
2019-03-05 21:57:51 +00:00
, ninja
, pkg-config
2022-01-14 04:29:26 +00:00
, python3
, vala
, wrapGAppsHook
, glib
, gtk3
, json-glib
2018-02-09 11:30:09 +00:00
, libevdev
2019-03-05 21:57:51 +00:00
, libgee
2022-01-14 04:29:26 +00:00
, libgudev
2018-10-31 22:25:22 +00:00
, libsoup
2022-01-14 04:29:26 +00:00
, pantheon
}:
2018-02-09 11:30:09 +00:00
stdenv.mkDerivation rec {
2019-03-05 21:57:51 +00:00
pname = "spice-up";
2022-01-14 04:29:26 +00:00
version = "1.9.1";
2018-02-09 11:30:09 +00:00
src = fetchFromGitHub {
owner = "Philip-Scott";
repo = "Spice-up";
rev = version;
2022-01-14 04:29:26 +00:00
sha256 = "sha256-FI6YMbqZfaU19k8pS2eoNCnX8O8F99SHHOxMwHC5fTc=";
2018-02-09 11:30:09 +00:00
};
2018-10-31 22:25:22 +00:00
2018-02-09 11:30:09 +00:00
nativeBuildInputs = [
2022-01-14 04:29:26 +00:00
meson
2018-08-20 20:31:18 +00:00
ninja
pkg-config
2022-01-14 04:29:26 +00:00
python3
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 = [
2022-01-14 04:29:26 +00:00
glib
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
2022-01-14 04:29:26 +00:00
pantheon.granite
2018-02-09 11:30:09 +00:00
];
2022-01-14 04:29:26 +00:00
postPatch = ''
chmod +x meson/post_install.py
patchShebangs meson/post_install.py
'';
2019-12-22 23:19:30 +00:00
passthru = {
updateScript = nix-update-script { };
2019-12-22 23:19:30 +00:00
};
meta = with lib; {
2019-03-05 21:57:51 +00: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 11:30:09 +00:00
platforms = platforms.linux;
# The COPYING file has GPLv3; some files have GPLv2+ and some have GPLv3+
license = licenses.gpl3Plus;
2022-01-14 04:29:26 +00:00
mainProgram = "com.github.philip_scott.spice-up";
2018-02-09 11:30:09 +00:00
};
}