onedrive: 2.3.12 -> 2.3.13

This commit is contained in:
Ian M. Jones 2020-01-17 00:22:57 +00:00 committed by Alyssa Ross
parent e20de6b57a
commit 96d2790061

View File

@ -1,35 +1,27 @@
{ stdenv { stdenv, fetchFromGitHub, dmd, pkgconfig, curl, sqlite, libnotify }:
, fetchFromGitHub
, dmd
, pkgconfig
, curl
, sqlite
}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "onedrive"; pname = "onedrive";
version = "2.3.12"; version = "2.3.13";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "abraunegg"; owner = "abraunegg";
repo = "onedrive"; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "0605nb3blvnncjx09frg2liarrd6pw8ph5jhnh764qcx0hyxcgs6"; sha256 = "0bcsrfh1g7bdlcp0zjn6np88qzpn5frv61lzxz9b2ayxf7wyybvi";
}; };
nativeBuildInputs = [ nativeBuildInputs = [ dmd pkgconfig ];
dmd
pkgconfig buildInputs = [ curl sqlite libnotify ];
];
buildInputs = [ configureFlags = [ "--enable-notifications" ];
curl
sqlite
];
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "A complete tool to interact with OneDrive on Linux"; description = "A complete tool to interact with OneDrive on Linux";
homepage = "https://github.com/abraunegg/onedrive"; homepage = "https://github.com/abraunegg/onedrive";
license = licenses.gpl3; license = licenses.gpl3;
maintainers = with maintainers; [ doronbehar srgom ]; maintainers = with maintainers; [ srgom ianmjones ];
platforms = platforms.linux; platforms = platforms.linux;
}; };
} }