1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/desktops/mate/python-caja/default.nix

37 lines
916 B
Nix
Raw Normal View History

2021-01-17 02:21:50 +00:00
{ lib, stdenv, fetchurl, pkg-config, 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 {
2021-01-15 13:21:58 +00:00
url = "https://pub.mate-desktop.org/releases/${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 = [
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;
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 = [ maintainers.romildo ];
};
}