nixpkgs/pkgs/desktops/mate/python-caja/default.nix
R. RyanTM 4e7933d634 mate.python-caja: 1.20.0 -> 1.20.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python-caja/versions
2018-10-24 11:05:27 -07:00

35 lines
867 B
Nix

{ stdenv, fetchurl, pkgconfig, intltool, gtk3, mate, pythonPackages }:
stdenv.mkDerivation rec {
name = "python-caja-${version}";
version = "1.20.1";
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
sha256 = "16y9xri92x7a40db2qakf20c80a6vqy21nwnjhwrki5rqk7nwbgx";
};
nativeBuildInputs = [
pkgconfig
intltool
pythonPackages.wrapPython
];
buildInputs = [
gtk3
mate.caja
pythonPackages.python
pythonPackages.pygobject3
];
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 ];
};
}