nixpkgs/pkgs/desktops/mate/python-caja/default.nix

35 lines
889 B
Nix
Raw Normal View History

2019-04-21 12:02:49 +00:00
{ stdenv, fetchurl, pkgconfig, intltool, gtk3, mate, python3Packages }:
2018-01-05 20:26:51 +00:00
stdenv.mkDerivation rec {
pname = "python-caja";
2019-09-30 10:07:57 +00:00
version = "1.22.1";
2018-01-05 20:26:51 +00:00
src = fetchurl {
url = "https://pub.mate-desktop.org/releases/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
2019-09-30 10:07:57 +00:00
sha256 = "07hkvs4a6anrvh28zjsrj8anbcz32p19hslhq66yhcvh0hh4kvqk";
2018-01-05 20:26:51 +00:00
};
nativeBuildInputs = [
pkgconfig
intltool
2019-04-21 12:02:49 +00:00
python3Packages.wrapPython
2018-01-05 20:26:51 +00:00
];
buildInputs = [
gtk3
mate.caja
2019-04-21 12:02:49 +00:00
python3Packages.python
python3Packages.pygobject3
2018-01-05 20:26:51 +00:00
];
configureFlags = [ "--with-cajadir=$$out/lib/caja/extensions-2.0" ];
meta = with stdenv.lib; {
description = "Python binding for Caja components";
homepage = https://github.com/mate-desktop/python-caja;
license = [ licenses.gpl2Plus ];
platforms = platforms.unix;
maintainers = [ maintainers.romildo ];
};
}