nixpkgs/pkgs/development/libraries/libpeas/default.nix

37 lines
1,003 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, intltool, gnome3
2018-12-25 04:30:59 +01:00
, glib, gtk3, gobject-introspection, python3, ncurses
}:
stdenv.mkDerivation rec {
2018-12-25 04:30:59 +01:00
pname = "libpeas";
version = "1.22.0";
src = fetchurl {
2018-12-25 04:30:59 +01:00
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "0qm908kisyjzjxvygdl18hjqxvvgkq9w0phs2g55pck277sw0bsv";
};
configureFlags = [ "--enable-python3" ];
2018-12-25 04:30:59 +01:00
nativeBuildInputs = [ pkgconfig intltool gobject-introspection ];
buildInputs = [ glib gtk3 ncurses python3 python3.pkgs.pygobject3 ];
propagatedBuildInputs = [
# Required by libpeas-1.0.pc
gobject-introspection
];
2018-12-25 04:30:59 +01:00
passthru = {
updateScript = gnome3.updateScript {
packageName = pname;
};
};
meta = with stdenv.lib; {
description = "A GObject-based plugins engine";
2018-12-25 04:30:59 +01:00
homepage = https://wiki.gnome.org/Projects/Libpeas;
license = licenses.gpl2Plus;
2018-05-30 03:21:09 +02:00
platforms = platforms.unix;
maintainers = gnome3.maintainers;
};
}