2019-06-03 18:00:03 +02:00
|
|
|
{ stdenv, fetchurl, substituteAll
|
2019-05-22 13:03:39 +02:00
|
|
|
, pkgconfig, gobject-introspection, gdk-pixbuf
|
2019-06-03 18:00:03 +02:00
|
|
|
, gtk3, mate, python3, dropbox }:
|
2018-01-05 16:58:44 +01:00
|
|
|
|
2019-06-03 18:00:03 +02:00
|
|
|
let
|
|
|
|
dropboxd = "${dropbox}/bin/dropbox";
|
|
|
|
in
|
2018-01-05 16:58:44 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-06-03 18:00:03 +02:00
|
|
|
pname = "caja-dropbox";
|
2019-04-23 22:01:49 +02:00
|
|
|
version = "1.22.1";
|
2018-01-05 16:58:44 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-06-03 18:00:03 +02:00
|
|
|
url = "http://pub.mate-desktop.org/releases/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2019-04-23 22:01:49 +02:00
|
|
|
sha256 = "18cnd3yw2ingvl38mhmfbl5k0kfg8pzcf2649j00i6v90cwiril5";
|
2018-01-05 16:58:44 +01:00
|
|
|
};
|
|
|
|
|
2019-06-03 18:00:03 +02:00
|
|
|
patches = [
|
|
|
|
(substituteAll {
|
|
|
|
src = ./fix-cli-paths.patch;
|
|
|
|
inherit dropboxd;
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
|
|
|
strictDeps = true;
|
|
|
|
|
2018-01-05 16:58:44 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig
|
2019-06-03 18:00:03 +02:00
|
|
|
gobject-introspection
|
2019-05-22 13:03:39 +02:00
|
|
|
gdk-pixbuf
|
2019-06-03 18:00:03 +02:00
|
|
|
(python3.withPackages (ps: with ps; [
|
|
|
|
docutils
|
|
|
|
pygobject3
|
|
|
|
]))
|
2018-01-05 16:58:44 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
gtk3
|
2018-02-13 23:44:07 +01:00
|
|
|
mate.caja
|
2019-06-03 18:00:03 +02:00
|
|
|
python3
|
2018-01-05 16:58:44 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
configureFlags = [ "--with-caja-extension-dir=$$out/lib/caja/extensions-2.0" ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Dropbox extension for Caja file manager";
|
2019-06-03 18:00:03 +02:00
|
|
|
homepage = "https://github.com/mate-desktop/caja-dropbox";
|
2018-01-05 16:58:44 +01:00
|
|
|
license = with licenses; [ gpl3 cc-by-nd-30 ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = [ maintainers.romildo ];
|
|
|
|
};
|
|
|
|
}
|