aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/desktops/cinnamon/cjs/default.nix
diff options
context:
space:
mode:
authorMx Kookie <kookie@spacekookie.de>2020-10-31 19:35:09 +0100
committerMx Kookie <kookie@spacekookie.de>2020-10-31 19:35:09 +0100
commitc4625b175f8200f643fd6e11010932ea44c78433 (patch)
treebce3f89888c8ac3991fa5569a878a9eab6801ccc /infra/libkookie/nixpkgs/pkgs/desktops/cinnamon/cjs/default.nix
parent49f735974dd103039ddc4cb576bb76555164a9e7 (diff)
parentd661aa56a8843e991261510c1bb28fdc2f6975ae (diff)
Add 'infra/libkookie/' from commit 'd661aa56a8843e991261510c1bb28fdc2f6975ae'
git-subtree-dir: infra/libkookie git-subtree-mainline: 49f735974dd103039ddc4cb576bb76555164a9e7 git-subtree-split: d661aa56a8843e991261510c1bb28fdc2f6975ae
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/desktops/cinnamon/cjs/default.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/desktops/cinnamon/cjs/default.nix95
1 files changed, 95 insertions, 0 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/desktops/cinnamon/cjs/default.nix b/infra/libkookie/nixpkgs/pkgs/desktops/cinnamon/cjs/default.nix
new file mode 100644
index 000000000000..a810bdcc03e1
--- /dev/null
+++ b/infra/libkookie/nixpkgs/pkgs/desktops/cinnamon/cjs/default.nix
@@ -0,0 +1,95 @@
+{ dbus-glib
+, fetchFromGitHub
+, gobject-introspection
+, pkgconfig
+, 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";
+ version = "4.6.0-gjs-1.66.0";
+
+ src = fetchFromGitHub {
+ owner = "leigh123linux";
+ repo = pname;
+ rev = "gjs-1.66.0";
+ sha256 = "1pccz7h8mwljziflhn04gmfnbl99pvcj1byz1c6zn947v5gqskj1";
+ };
+
+ 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
+ ];
+
+ propagatedBuildInputs = [
+ glib
+
+ # bindings
+ gnome3.caribou
+ keybinder3
+ upower
+ xapps
+ ];
+
+ mesonFlags = [
+ "-Dprofiler=disabled"
+ ];
+
+ meta = with stdenv.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;
+ };
+}