forked from mirrors/nixpkgs
onedrive: init at 2.3.9
This commit is contained in:
parent
dae532c445
commit
b22d36f768
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;
|
||||
};
|
||||
}
|
|
@ -12846,6 +12846,8 @@ in
|
|||
|
||||
one_gadget = callPackage ../development/tools/misc/one_gadget { };
|
||||
|
||||
onedrive = callPackage ../applications/networking/sync/onedrive { };
|
||||
|
||||
oneko = callPackage ../applications/misc/oneko { };
|
||||
|
||||
oniguruma = callPackage ../development/libraries/oniguruma { };
|
||||
|
|
Loading…
Reference in a new issue