mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
gjs: 1.42 -> 1.43
This commit is contained in:
parent
52e55d85cb
commit
b9d8c72098
1 changed files with 7 additions and 6 deletions
|
@ -1,22 +1,23 @@
|
|||
{ fetchurl, stdenv, pkgconfig, gnome3, gobjectIntrospection, spidermonkey_24, pango }:
|
||||
{ fetchurl, stdenv, pkgconfig, gnome3, gtk3, gobjectIntrospection
|
||||
, spidermonkey_24, pango, readline, glib }:
|
||||
|
||||
let
|
||||
majorVersion = "1.42";
|
||||
majorVersion = "1.43";
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
name = "gjs-${majorVersion}.0";
|
||||
name = "gjs-${majorVersion}.3";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/gjs/${majorVersion}/${name}.tar.xz";
|
||||
sha256 = "0c9afb7d5be6ead5b68059596f08eb7c3902b1676ee9c8846aa8df09647dba13";
|
||||
sha256 = "0khwm8l6m6x71rwf3q92d6scbhmrpiw7kqmj34nn588fb7a4vdc2";
|
||||
};
|
||||
|
||||
buildInputs = with gnome3;
|
||||
[ gobjectIntrospection pkgconfig glib pango ];
|
||||
buildInputs = [ gobjectIntrospection pkgconfig gtk3 glib pango readline ];
|
||||
|
||||
propagatedBuildInputs = [ spidermonkey_24 ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
maintainers = gnome3.maintainers;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue