75 lines
1.6 KiB
Nix
75 lines
1.6 KiB
Nix
{ lib, stdenv
|
|
, substituteAll
|
|
, autoreconfHook
|
|
, pkg-config
|
|
, fetchurl
|
|
, python3
|
|
, dropbox
|
|
, gtk4
|
|
, nautilus
|
|
, gdk-pixbuf
|
|
, gobject-introspection
|
|
}:
|
|
|
|
let
|
|
version = "2024.04.17";
|
|
dropboxd = "${dropbox}/bin/dropbox";
|
|
in
|
|
stdenv.mkDerivation {
|
|
pname = "dropbox-cli";
|
|
inherit version;
|
|
|
|
outputs = [ "out" "nautilusExtension" ];
|
|
|
|
src = fetchurl {
|
|
url = "https://linux.dropbox.com/packages/nautilus-dropbox-${version}.tar.bz2";
|
|
hash = "sha256-pqCYzxaqR0f0CBaseT1Z436K47cIDQswYR1sK4Zj8sE=";
|
|
};
|
|
|
|
strictDeps = true;
|
|
|
|
patches = [
|
|
(substituteAll {
|
|
src = ./fix-cli-paths.patch;
|
|
inherit dropboxd;
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
gobject-introspection
|
|
gdk-pixbuf
|
|
# only for build, the install command also wants to use GTK through introspection
|
|
# but we are using Nix for installation so we will not need that.
|
|
(python3.withPackages (ps: with ps; [
|
|
docutils
|
|
pygobject3
|
|
]))
|
|
];
|
|
|
|
buildInputs = [
|
|
python3
|
|
gtk4
|
|
nautilus
|
|
];
|
|
|
|
configureFlags = [
|
|
"--with-nautilus-extension-dir=${placeholder "nautilusExtension"}/lib/nautilus/extension-4"
|
|
];
|
|
|
|
makeFlags = [
|
|
"EMBLEM_DIR=${placeholder "nautilusExtension"}/share/nautilus-dropbox/emblems"
|
|
];
|
|
|
|
meta = {
|
|
homepage = "https://www.dropbox.com";
|
|
description = "Command line client for the dropbox daemon";
|
|
license = lib.licenses.gpl3Plus;
|
|
mainProgram = "dropbox";
|
|
maintainers = with lib.maintainers; [ ];
|
|
# NOTE: Dropbox itself only works on linux, so this is ok.
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|