1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00
This commit is contained in:
Kierán Meinhardt
2019-02-13 14:34:02 +01:00
parent 0581dbb77a
commit aadd7c5f46
2 changed files with 69 additions and 1 deletions

12
packages/onedrive.nix Normal file
View File

@@ -0,0 +1,12 @@
{ stdenv, dmd, curl, sqlite, fetchFromGitHub }:
stdenv.mkDerivation {
name = "onedrive";
version = "v1.1.3";
src = fetchFromGitHub {
owner = "skilion";
repo = "onedrive";
rev = "945251f7f2e95ae85001efb6eab85d6176bac75e";
sha256 = "16iajb61b09gdqly85h6h7ap385ihk0az3mimkj277yc08rv68d0";
};
buildInputs = [ dmd curl sqlite ];
}