mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
synology-drive: init at 3.0.1-12674 (#141977)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com> Co-authored-by: MoritzBoehme <mr.x@moritzboeh.me>
This commit is contained in:
parent
7d2c9796cc
commit
e5537e4de7
@ -7849,6 +7849,12 @@
|
||||
githubId = 99988;
|
||||
name = "Maarten Hoogendoorn";
|
||||
};
|
||||
MoritzBoehme = {
|
||||
email = "mail@moritzboeh.me";
|
||||
github = "MoritzBoehme";
|
||||
githubId = 42215704;
|
||||
name = "Moritz Böhme";
|
||||
};
|
||||
MostAwesomeDude = {
|
||||
email = "cds@corbinsimpson.com";
|
||||
github = "MostAwesomeDude";
|
||||
|
45
pkgs/applications/networking/synology-drive/default.nix
Normal file
45
pkgs/applications/networking/synology-drive/default.nix
Normal file
@ -0,0 +1,45 @@
|
||||
{ lib, mkDerivation, fetchurl, autoPatchelfHook, dpkg, glibc, gnome }:
|
||||
|
||||
mkDerivation rec {
|
||||
pname = "synology-drive";
|
||||
subVersion = "12674";
|
||||
version = "3.0.1-${subVersion}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://global.download.synology.com/download/Utility/SynologyDriveClient/${version}/Ubuntu/Installer/x86_64/synology-drive-client-${subVersion}.x86_64.deb";
|
||||
sha256 = "1yyv6zgszsym22kf4jvlan7n9lw09fw24fyrh7c8pzbb2029gp8a";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoPatchelfHook dpkg ];
|
||||
|
||||
buildInputs = [ glibc gnome.nautilus ];
|
||||
|
||||
unpackPhase = ''
|
||||
mkdir -p $out
|
||||
dpkg -x $src $out
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
# synology-drive executable
|
||||
cp -av $out/usr/* $out
|
||||
rm -rf $out/usr
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
postInstall = ''
|
||||
substituteInPlace $out/bin/synology-drive --replace /opt $out/opt
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://www.synology.com/";
|
||||
description = "Synchronize files between client and Synology NAS.";
|
||||
longDescription = ''
|
||||
Drive for PC, the desktop utility of the DSM add-on package.
|
||||
Drive, allows you to sync and share files owned by you or shared by others between a centralized Synology NAS and multiple client computers.
|
||||
'';
|
||||
license = licenses.unfree;
|
||||
maintainers = with maintainers; [ MoritzBoehme ];
|
||||
platforms = [ "x86_64-linux" ];
|
||||
};
|
||||
}
|
@ -27128,6 +27128,8 @@ with pkgs;
|
||||
mlt-qt5 = libsForQt514.mlt;
|
||||
};
|
||||
|
||||
synology-drive = libsForQt5.callPackage ../applications/networking/synology-drive { };
|
||||
|
||||
taxi = callPackage ../applications/networking/ftp/taxi { };
|
||||
|
||||
librep = callPackage ../development/libraries/librep { };
|
||||
|
Loading…
Reference in New Issue
Block a user