1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/applications/networking/sync/onedrive/default.nix
SRGOM 3bc67c81ce onedrive: 2.3.10 -> 2.3.11
Also, changed name to onedrive-abraunegg. Shows it's not official, and also gets tracked in repology for a potential auto-update using @ryantm 's bot.
2019-11-13 13:25:12 -08:00

36 lines
696 B
Nix

{ stdenv
, fetchFromGitHub
, dmd
, pkgconfig
, curl
, sqlite
}:
stdenv.mkDerivation rec {
pname = "onedrive-abraunegg";
version = "2.3.11";
src = fetchFromGitHub {
owner = "abraunegg";
repo = "onedrive";
rev = "v${version}";
sha256 = "08k5b3izqzk9mjjny5y47i3q5sl0w37xdqrhaacjxwm0jib9w0mh";
};
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 srgom];
platforms = platforms.linux;
};
}