2019-04-21 13:02:45 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gtk3, mate, python3Packages }:
|
2018-01-05 15:58:44 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "caja-dropbox-${version}";
|
2019-04-23 21:01:49 +01:00
|
|
|
version = "1.22.1";
|
2018-01-05 15:58:44 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-04-21 16:40:55 +01:00
|
|
|
url = "http://pub.mate-desktop.org/releases/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
|
2019-04-23 21:01:49 +01:00
|
|
|
sha256 = "18cnd3yw2ingvl38mhmfbl5k0kfg8pzcf2649j00i6v90cwiril5";
|
2018-01-05 15:58:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
gtk3
|
2018-02-13 22:44:07 +00:00
|
|
|
mate.caja
|
2019-04-21 13:02:45 +01:00
|
|
|
python3Packages.python
|
|
|
|
python3Packages.pygtk
|
|
|
|
python3Packages.docutils
|
2018-01-05 15:58:44 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
configureFlags = [ "--with-caja-extension-dir=$$out/lib/caja/extensions-2.0" ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Dropbox extension for Caja file manager";
|
|
|
|
homepage = https://github.com/mate-desktop/caja-dropbox;
|
|
|
|
license = with licenses; [ gpl3 cc-by-nd-30 ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = [ maintainers.romildo ];
|
|
|
|
};
|
|
|
|
}
|