mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-16 09:03:42 +00:00
Merge pull request #66420 from peterhoeg/p/maestral
maestral: init at 0.2.6
This commit is contained in:
commit
d7fc23a0a6
38
pkgs/applications/networking/maestral/default.nix
Normal file
38
pkgs/applications/networking/maestral/default.nix
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
{ lib, python3Packages, fetchFromGitHub
|
||||||
|
, withGui ? false, wrapQtAppsHook ? null }:
|
||||||
|
|
||||||
|
python3Packages.buildPythonApplication rec {
|
||||||
|
pname = "maestral${lib.optionalString withGui "-gui"}";
|
||||||
|
version = "0.2.6";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "SamSchott";
|
||||||
|
repo = "maestral-dropbox";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1nfjm58f6hnqbx9xnz2h929s2175ka1yf5jjlk4i60v0wppnrrdf";
|
||||||
|
};
|
||||||
|
|
||||||
|
disabled = python3Packages.pythonOlder "3.6";
|
||||||
|
|
||||||
|
propagatedBuildInputs = (with python3Packages; [
|
||||||
|
blinker click dropbox keyring keyrings-alt requests u-msgpack-python watchdog
|
||||||
|
] ++ lib.optional withGui pyqt5);
|
||||||
|
|
||||||
|
nativeBuildInputs = lib.optional withGui wrapQtAppsHook;
|
||||||
|
|
||||||
|
postInstall = lib.optionalString withGui ''
|
||||||
|
makeQtWrapper $out/bin/maestral $out/bin/maestral-gui \
|
||||||
|
--add-flags gui
|
||||||
|
'';
|
||||||
|
|
||||||
|
# no tests
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Open-source Dropbox client for macOS and Linux";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ peterhoeg ];
|
||||||
|
platforms = platforms.unix;
|
||||||
|
inherit (src.meta) homepage;
|
||||||
|
};
|
||||||
|
}
|
@ -20487,6 +20487,10 @@ in
|
|||||||
|
|
||||||
dropbox-cli = callPackage ../applications/networking/dropbox/cli.nix { };
|
dropbox-cli = callPackage ../applications/networking/dropbox/cli.nix { };
|
||||||
|
|
||||||
|
maestral = callPackage ../applications/networking/maestral { };
|
||||||
|
|
||||||
|
maestral-gui = libsForQt5.callPackage ../applications/networking/maestral { withGui = true; };
|
||||||
|
|
||||||
insync = callPackage ../applications/networking/insync { };
|
insync = callPackage ../applications/networking/insync { };
|
||||||
|
|
||||||
libstrangle = callPackage ../tools/X11/libstrangle {
|
libstrangle = callPackage ../tools/X11/libstrangle {
|
||||||
|
Loading…
Reference in New Issue
Block a user