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

35 lines
889 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, gettext, gtk3, mate, python3Packages }:
2018-01-05 20:26:51 +00:00
stdenv.mkDerivation rec {
pname = "python-caja";
2020-02-12 17:51:24 +00:00
version = "1.24.0";
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";
2020-02-12 17:51:24 +00:00
sha256 = "1wp61q64cgzr3syd3niclj6rjk87wlib5m86i0myf5ph704r3qgg";
2018-01-05 20:26:51 +00:00
};
nativeBuildInputs = [
pkgconfig
gettext
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";
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 = [ maintainers.romildo ];
};
}