Merge pull request #69136 from doronbehar/package-onedrive
onedrive: init at 2.3.9
This commit is contained in:
commit
a1f6032ea1
35
pkgs/applications/networking/sync/onedrive/default.nix
Normal file
35
pkgs/applications/networking/sync/onedrive/default.nix
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
{ stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, dmd
|
||||||
|
, pkgconfig
|
||||||
|
, curl
|
||||||
|
, sqlite
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "onedrive";
|
||||||
|
version = "2.3.9";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "abraunegg";
|
||||||
|
repo = "onedrive";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0fg2zzhhd1wl8z416px432xynx6whnzdamzdckc8rmm1cvghgb0f";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
dmd
|
||||||
|
pkgconfig
|
||||||
|
];
|
||||||
|
buildInputs = [
|
||||||
|
curl
|
||||||
|
sqlite
|
||||||
|
];
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "A complete tool to interact with OneDrive on Linux";
|
||||||
|
homepage = "https://github.com/abraunegg/onedrive";
|
||||||
|
license = licenses.gpl3;
|
||||||
|
maintainers = with maintainers; [ doronbehar ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -12849,6 +12849,8 @@ in
|
|||||||
|
|
||||||
one_gadget = callPackage ../development/tools/misc/one_gadget { };
|
one_gadget = callPackage ../development/tools/misc/one_gadget { };
|
||||||
|
|
||||||
|
onedrive = callPackage ../applications/networking/sync/onedrive { };
|
||||||
|
|
||||||
oneko = callPackage ../applications/misc/oneko { };
|
oneko = callPackage ../applications/misc/oneko { };
|
||||||
|
|
||||||
oniguruma = callPackage ../development/libraries/oniguruma { };
|
oniguruma = callPackage ../development/libraries/oniguruma { };
|
||||||
|
Loading…
Reference in New Issue
Block a user