9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
71 lines
1.5 KiB
Nix
71 lines
1.5 KiB
Nix
{ lib, stdenv
|
|
, substituteAll
|
|
, pkg-config
|
|
, fetchurl
|
|
, python3
|
|
, dropbox
|
|
, gtk3
|
|
, gnome3
|
|
, gdk-pixbuf
|
|
, gobject-introspection
|
|
}:
|
|
|
|
let
|
|
version = "2020.03.04";
|
|
dropboxd = "${dropbox}/bin/dropbox";
|
|
in
|
|
stdenv.mkDerivation {
|
|
pname = "dropbox-cli";
|
|
inherit version;
|
|
|
|
outputs = [ "out" "nautilusExtension" ];
|
|
|
|
src = fetchurl {
|
|
url = "https://linux.dropboxstatic.com/packages/nautilus-dropbox-${version}.tar.bz2";
|
|
sha256 = "1jjc835n2j61d23kvygdb4n4jsrw33r9mbwxrm4fqin6x01l2w7k";
|
|
};
|
|
|
|
strictDeps = true;
|
|
|
|
patches = [
|
|
(substituteAll {
|
|
src = ./fix-cli-paths.patch;
|
|
inherit dropboxd;
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
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
|
|
gtk3
|
|
gnome3.nautilus
|
|
];
|
|
|
|
configureFlags = [
|
|
"--with-nautilus-extension-dir=${placeholder "nautilusExtension"}/lib/nautilus/extensions-3.0"
|
|
];
|
|
|
|
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;
|
|
# NOTE: Dropbox itself only works on linux, so this is ok.
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|