Merge pull request #69136 from doronbehar/package-onedrive

onedrive: init at 2.3.9

authored by markuskowa and committed by GitHub a1f6032e 765a72a2

+37
+35
pkgs/applications/networking/sync/onedrive/default.nix
··· 1 + { stdenv 2 + , fetchFromGitHub 3 + , dmd 4 + , pkgconfig 5 + , curl 6 + , sqlite 7 + }: 8 + 9 + stdenv.mkDerivation rec { 10 + pname = "onedrive"; 11 + version = "2.3.9"; 12 + 13 + src = fetchFromGitHub { 14 + owner = "abraunegg"; 15 + repo = "onedrive"; 16 + rev = "v${version}"; 17 + sha256 = "0fg2zzhhd1wl8z416px432xynx6whnzdamzdckc8rmm1cvghgb0f"; 18 + }; 19 + 20 + nativeBuildInputs = [ 21 + dmd 22 + pkgconfig 23 + ]; 24 + buildInputs = [ 25 + curl 26 + sqlite 27 + ]; 28 + meta = with stdenv.lib; { 29 + description = "A complete tool to interact with OneDrive on Linux"; 30 + homepage = "https://github.com/abraunegg/onedrive"; 31 + license = licenses.gpl3; 32 + maintainers = with maintainers; [ doronbehar ]; 33 + platforms = platforms.linux; 34 + }; 35 + }
+2
pkgs/top-level/all-packages.nix
··· 12849 12849 12850 12850 one_gadget = callPackage ../development/tools/misc/one_gadget { }; 12851 12851 12852 + onedrive = callPackage ../applications/networking/sync/onedrive { }; 12853 + 12852 12854 oneko = callPackage ../applications/misc/oneko { }; 12853 12855 12854 12856 oniguruma = callPackage ../development/libraries/oniguruma { };