3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/desktops/mate/python-caja/default.nix

39 lines
1,001 B
Nix
Raw Normal View History

2021-04-02 20:58:16 +01:00
{ lib, stdenv, fetchurl, pkg-config, gettext, gtk3, mate, python3Packages, mateUpdateScript }:
2018-01-05 20:26:51 +00:00
stdenv.mkDerivation rec {
pname = "python-caja";
2021-08-10 19:07:56 +01:00
version = "1.26.0";
2018-01-05 20:26:51 +00:00
src = fetchurl {
2021-01-15 13:21:58 +00:00
url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
2021-08-10 19:07:56 +01:00
sha256 = "181zcs1pi3762chm4xraqs8048jm7jzwnvgwla1v3z2nqzpp3xr1";
2018-01-05 20:26:51 +00:00
};
nativeBuildInputs = [
2021-01-17 02:21:50 +00:00
pkg-config
gettext
2019-04-21 13:02:49 +01:00
python3Packages.wrapPython
2018-01-05 20:26:51 +00:00
];
buildInputs = [
gtk3
mate.caja
2019-04-21 13:02:49 +01:00
python3Packages.python
python3Packages.pygobject3
2018-01-05 20:26:51 +00:00
];
configureFlags = [ "--with-cajadir=$$out/lib/caja/extensions-2.0" ];
2020-02-14 21:52:51 +00:00
enableParallelBuilding = true;
2021-04-02 20:58:16 +01:00
passthru.updateScript = mateUpdateScript { inherit pname version; };
meta = with lib; {
2018-01-05 20:26:51 +00:00
description = "Python binding for Caja components";
2020-02-12 17:51:24 +00:00
homepage = "https://github.com/mate-desktop/python-caja";
2018-01-05 20:26:51 +00:00
license = [ licenses.gpl2Plus ];
platforms = platforms.unix;
maintainers = teams.mate.members;
2018-01-05 20:26:51 +00:00
};
}