libpeas: 1.30.0 → 1.32.0
https://gitlab.gnome.org/GNOME/libpeas/-/compare/1.30.0...1.32.0
This commit is contained in:
parent
70c0a6915f
commit
705068d5e3
1 changed files with 31 additions and 6 deletions
|
@ -1,20 +1,45 @@
|
|||
{ lib, stdenv, fetchurl, meson, ninja, pkg-config, gettext, gnome
|
||||
, glib, gtk3, gobject-introspection, python3, ncurses
|
||||
{ stdenv
|
||||
, lib
|
||||
, fetchurl
|
||||
, meson
|
||||
, ninja
|
||||
, pkg-config
|
||||
, gettext
|
||||
, gnome
|
||||
, glib
|
||||
, gtk3
|
||||
, gobject-introspection
|
||||
, python3
|
||||
, ncurses
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libpeas";
|
||||
version = "1.30.0";
|
||||
version = "1.32.0";
|
||||
|
||||
outputs = [ "out" "dev" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
||||
sha256 = "18xrk1c1ixlhkmykcfiafrl2am470ws687xqvjlq40zwkcp5dx8b";
|
||||
sha256 = "1iVSD6AuiXcCmyRq5Dm8IYloll8egtYSIItxPx3MPQ4=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config meson ninja gettext gobject-introspection ];
|
||||
buildInputs = [ glib gtk3 ncurses python3 python3.pkgs.pygobject3 ];
|
||||
nativeBuildInputs = [
|
||||
pkg-config
|
||||
meson
|
||||
ninja
|
||||
gettext
|
||||
gobject-introspection
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
glib
|
||||
gtk3
|
||||
ncurses
|
||||
python3
|
||||
python3.pkgs.pygobject3
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
# Required by libpeas-1.0.pc
|
||||
gobject-introspection
|
||||
|
|
Loading…
Reference in a new issue