3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/desktops/mate/caja-dropbox/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

66 lines
1.3 KiB
Nix
Raw Normal View History

2022-07-12 12:56:56 +01:00
{ lib
, stdenv
, fetchurl
, substituteAll
, pkg-config
, gobject-introspection
, gdk-pixbuf
, gtk3
, mate
, python3
, dropbox
, mateUpdateScript
}:
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";
2021-08-10 19:07:55 +01:00
version = "1.26.0";
2018-01-05 15:58:44 +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";
2021-08-10 19:07:55 +01:00
sha256 = "16w4r0zjps12lmzwiwpb9qnmbvd0p391q97296sxa8k88b1x14wn";
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 = [
2021-01-17 02:21:50 +00:00
pkg-config
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;
passthru.updateScript = mateUpdateScript { inherit pname; };
2021-04-02 20:58:16 +01:00
meta = with lib; {
2018-01-05 15:58:44 +00:00
description = "Dropbox extension for Caja file manager";
2019-06-03 17:00:03 +01:00
homepage = "https://github.com/mate-desktop/caja-dropbox";
2021-04-22 14:23:43 +01:00
license = with licenses; [ gpl3Plus cc-by-nd-30 ];
2018-01-05 15:58:44 +00:00
platforms = platforms.unix;
maintainers = teams.mate.members;
2018-01-05 15:58:44 +00:00
};
}