mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 17:10:48 +00:00
96 lines
1.5 KiB
Nix
96 lines
1.5 KiB
Nix
{ dbus-glib
|
|
, fetchFromGitHub
|
|
, gobject-introspection
|
|
, pkg-config
|
|
, lib, stdenv
|
|
, wrapGAppsHook
|
|
, python3
|
|
, cairo
|
|
, gnome3
|
|
, xapps
|
|
, keybinder3
|
|
, upower
|
|
, callPackage
|
|
, glib
|
|
, libffi
|
|
, gtk3
|
|
, readline
|
|
, spidermonkey_78
|
|
, meson
|
|
, sysprof
|
|
, dbus
|
|
, xvfb_run
|
|
, ninja
|
|
, makeWrapper
|
|
, which
|
|
, libxml2
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "cjs-unstable";
|
|
version = "2020-10-19";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "linuxmint";
|
|
repo = "cjs";
|
|
rev = "befc11adb5ba10681464e6fa81b1a79f108ce61c";
|
|
hash = "sha256-F2t8uKV2r29NxX2+3mYp5x1bug2lwihJZTK1dSS8rPg=";
|
|
};
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
nativeBuildInputs = [
|
|
meson # ADDING cmake breaks the build, ignore meson warning
|
|
ninja
|
|
pkg-config
|
|
makeWrapper
|
|
which # for locale detection
|
|
libxml2 # for xml-stripblanks
|
|
];
|
|
|
|
buildInputs = [
|
|
gobject-introspection
|
|
cairo
|
|
readline
|
|
spidermonkey_78
|
|
dbus # for dbus-run-session
|
|
];
|
|
|
|
checkInputs = [
|
|
xvfb_run
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
glib
|
|
|
|
# bindings
|
|
gnome3.caribou
|
|
keybinder3
|
|
upower
|
|
xapps
|
|
];
|
|
|
|
mesonFlags = [
|
|
"-Dprofiler=disabled"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/linuxmint/cjs";
|
|
description = "JavaScript bindings for Cinnamon";
|
|
|
|
longDescription = ''
|
|
This module contains JavaScript bindings based on gobject-introspection.
|
|
'';
|
|
|
|
license = with licenses; [
|
|
gpl2Plus
|
|
lgpl2Plus
|
|
mit
|
|
mpl11
|
|
];
|
|
|
|
platforms = platforms.linux;
|
|
maintainers = teams.cinnamon.members;
|
|
};
|
|
}
|