depot/third_party/nixpkgs/pkgs/by-name/na/nautilus-python/package.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

71 lines
1.4 KiB
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
stdenv,
lib,
substituteAll,
fetchurl,
meson,
ninja,
pkg-config,
gtk-doc,
docbook-xsl-nons,
docbook_xml_dtd_412,
python3,
nautilus,
gnome,
}:
stdenv.mkDerivation (finalAttrs:{
pname = "nautilus-python";
version = "4.0.1";
outputs = [
"out"
"dev"
"doc"
"devdoc"
];
src = fetchurl {
url = "mirror://gnome/sources/nautilus-python/${lib.versions.majorMinor finalAttrs.version}/nautilus-python-${finalAttrs.version}.tar.xz";
hash = "sha256-/EnBBPsyoK0ZWmawE2eEzRnRDYs+jVnV7n9z6PlOko8=";
};
patches = [
# Make PyGObjects gi library available.
(substituteAll {
src = ./fix-paths.patch;
pythonPaths = lib.concatMapStringsSep ", " (pkg: "'${pkg}/${python3.sitePackages}'") [
python3.pkgs.pygobject3
];
})
];
nativeBuildInputs = [
pkg-config
meson
ninja
gtk-doc
docbook-xsl-nons
docbook_xml_dtd_412
];
buildInputs = [
python3
python3.pkgs.pygobject3
nautilus
];
passthru = {
updateScript = gnome.updateScript {
packageName = "nautilus-python";
};
};
meta = with lib; {
description = "Python bindings for the Nautilus Extension API";
homepage = "https://gitlab.gnome.org/GNOME/nautilus-python";
license = licenses.gpl2Plus;
maintainers = teams.gnome.members;
platforms = platforms.unix;
};
})