summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/3.10/core/gjs/default.nix
blob: 429d147e728b55413d75ec517b2810afbac38c24 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ fetchurl, stdenv, pkgconfig, gnome3, gobjectIntrospection, spidermonkey_17, pango }:


stdenv.mkDerivation rec {
  name = "gjs-1.38.1";

  src = fetchurl {
    url = "mirror://gnome/sources/gjs/1.38/${name}.tar.xz";
    sha256 = "0xl1zc5ncaxqs5ww5j82rzqrg429l8pdapqclxiba7dxwyh6a83b";
  };

  buildInputs = with gnome3;
    [ gobjectIntrospection pkgconfig glib pango ];

  propagatedBuildInputs = [ spidermonkey_17 ];

  meta = with stdenv.lib; {
    platforms = platforms.linux;
  };

}