mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-31 20:54:56 +00:00
97 lines
1.7 KiB
Nix
97 lines
1.7 KiB
Nix
{
|
||
stdenv,
|
||
lib,
|
||
fetchurl,
|
||
replaceVars,
|
||
meson,
|
||
ninja,
|
||
pkg-config,
|
||
gettext,
|
||
gi-docgen,
|
||
gnome,
|
||
glib,
|
||
gtk3,
|
||
gobject-introspection,
|
||
python3,
|
||
ncurses,
|
||
wrapGAppsHook3,
|
||
}:
|
||
|
||
stdenv.mkDerivation rec {
|
||
pname = "libpeas";
|
||
version = "1.38.1";
|
||
|
||
outputs = [
|
||
"out"
|
||
"dev"
|
||
"devdoc"
|
||
];
|
||
|
||
src = fetchurl {
|
||
url = "mirror://gnome/sources/libpeas/${lib.versions.majorMinor version}/libpeas-${version}.tar.xz";
|
||
sha256 = "sha256-6C/TKK3KwaujS2QTa9/Lus8rMliovE5fSApyUCphGuk=";
|
||
};
|
||
|
||
patches = [
|
||
# Make PyGObject’s gi library available.
|
||
(replaceVars ./fix-paths.patch {
|
||
pythonPaths = lib.concatMapStringsSep ", " (pkg: "'${pkg}/${python3.sitePackages}'") [
|
||
python3.pkgs.pygobject3
|
||
];
|
||
})
|
||
];
|
||
|
||
depsBuildBuild = [
|
||
pkg-config
|
||
];
|
||
|
||
nativeBuildInputs = [
|
||
pkg-config
|
||
meson
|
||
ninja
|
||
gettext
|
||
gi-docgen
|
||
gobject-introspection
|
||
wrapGAppsHook3
|
||
];
|
||
|
||
buildInputs = [
|
||
glib
|
||
gtk3
|
||
ncurses
|
||
python3
|
||
python3.pkgs.pygobject3
|
||
];
|
||
|
||
propagatedBuildInputs = [
|
||
# Required by libpeas-1.0.pc
|
||
gobject-introspection
|
||
];
|
||
|
||
mesonFlags = [
|
||
"-Dgtk_doc=true"
|
||
];
|
||
|
||
postFixup = ''
|
||
# Cannot be in postInstall, otherwise _multioutDocs hook in preFixup will move right back.
|
||
moveToOutput "share/doc" "$devdoc"
|
||
'';
|
||
|
||
passthru = {
|
||
updateScript = gnome.updateScript {
|
||
packageName = "libpeas";
|
||
versionPolicy = "odd-unstable";
|
||
freeze = true;
|
||
};
|
||
};
|
||
|
||
meta = {
|
||
description = "GObject-based plugins engine";
|
||
mainProgram = "peas-demo";
|
||
homepage = "https://gitlab.gnome.org/GNOME/libpeas";
|
||
license = lib.licenses.gpl2Plus;
|
||
platforms = lib.platforms.unix;
|
||
teams = [ lib.teams.gnome ];
|
||
};
|
||
}
|