nixpkgs/pkgs/desktops/mate/caja-dropbox/default.nix
2019-07-22 18:50:57 -04:00

52 lines
1.1 KiB
Nix

{ stdenv, fetchurl, substituteAll
, pkgconfig, gobject-introspection, gdk-pixbuf
, gtk3, mate, python3, dropbox }:
let
dropboxd = "${dropbox}/bin/dropbox";
in
stdenv.mkDerivation rec {
pname = "caja-dropbox";
version = "1.22.1";
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "18cnd3yw2ingvl38mhmfbl5k0kfg8pzcf2649j00i6v90cwiril5";
};
patches = [
(substituteAll {
src = ./fix-cli-paths.patch;
inherit dropboxd;
})
];
strictDeps = true;
nativeBuildInputs = [
pkgconfig
gobject-introspection
gdk-pixbuf
(python3.withPackages (ps: with ps; [
docutils
pygobject3
]))
];
buildInputs = [
gtk3
mate.caja
python3
];
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 ];
};
}