nixpkgs/pkgs/desktops/mate/caja-dropbox/default.nix

54 lines
1.2 KiB
Nix
Raw Normal View History

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