nixpkgs/pkgs/desktops/cinnamon/cjs/default.nix

96 lines
1.5 KiB
Nix
Raw Normal View History

2020-09-28 13:06:32 +00:00
{ dbus-glib
2020-01-18 16:25:42 +00:00
, fetchFromGitHub
, gobject-introspection
, pkgconfig
, lib, stdenv
2020-01-18 16:25:42 +00:00
, wrapGAppsHook
, python3
, cairo
, gnome3
, xapps
, keybinder3
, upower
, callPackage
, glib
, libffi
, gtk3
, readline
2020-09-28 13:06:32 +00:00
, spidermonkey_78
, meson
, sysprof
, dbus
, xvfb_run
, ninja
, makeWrapper
, which
, libxml2
2020-01-18 16:25:42 +00:00
}:
stdenv.mkDerivation rec {
pname = "cjs-unstable";
version = "2020-10-19";
2020-01-18 16:25:42 +00:00
src = fetchFromGitHub {
owner = "linuxmint";
repo = "cjs";
rev = "befc11adb5ba10681464e6fa81b1a79f108ce61c";
hash = "sha256-F2t8uKV2r29NxX2+3mYp5x1bug2lwihJZTK1dSS8rPg=";
2020-01-18 16:25:42 +00:00
};
2020-09-28 13:06:32 +00:00
outputs = [ "out" "dev" ];
nativeBuildInputs = [
meson # ADDING cmake breaks the build, ignore meson warning
ninja
pkgconfig
makeWrapper
which # for locale detection
libxml2 # for xml-stripblanks
];
buildInputs = [
gobject-introspection
cairo
readline
spidermonkey_78
dbus # for dbus-run-session
];
checkInputs = [
xvfb_run
];
2020-01-18 16:25:42 +00:00
propagatedBuildInputs = [
glib
# bindings
gnome3.caribou
keybinder3
upower
xapps
];
2020-09-28 13:06:32 +00:00
mesonFlags = [
"-Dprofiler=disabled"
2020-01-18 16:25:42 +00:00
];
meta = with lib; {
2020-01-18 16:25:42 +00:00
homepage = "https://github.com/linuxmint/cjs";
description = "JavaScript bindings for Cinnamon";
longDescription = ''
This module contains JavaScript bindings based on gobject-introspection.
'';
license = with licenses; [
2020-09-28 13:06:32 +00:00
gpl2Plus
lgpl2Plus
mit
mpl11
];
2020-01-18 16:25:42 +00:00
platforms = platforms.linux;
maintainers = teams.cinnamon.members;
2020-01-18 16:25:42 +00:00
};
}