about summary refs log tree commit diff
path: root/pkgs/applications/networking/sync/onedrive/default.nix
diff options
context:
space:
mode:
authorPeter Hoeg <peter@hoeg.com>2020-06-12 16:36:41 +0800
committerPeter Hoeg <peter@hoeg.com>2020-06-12 16:36:41 +0800
commit73ae41dedeac47645ad5c7711da3e15e95392e1f (patch)
tree9fc5029363ab40071a41ebc75c3aa3f26feba557 /pkgs/applications/networking/sync/onedrive/default.nix
parentba8d84f69fe9b3114859846b6fe95e4f5375e834 (diff)
onedrive: build with ldc instead of dmd
Diffstat (limited to 'pkgs/applications/networking/sync/onedrive/default.nix')
-rw-r--r--pkgs/applications/networking/sync/onedrive/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/networking/sync/onedrive/default.nix b/pkgs/applications/networking/sync/onedrive/default.nix
index dd5e633c3f4a7..be255a6c1465f 100644
--- a/pkgs/applications/networking/sync/onedrive/default.nix
+++ b/pkgs/applications/networking/sync/onedrive/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, lib, fetchFromGitHub, autoreconfHook, dmd, installShellFiles, pkgconfig
+{ stdenv, lib, fetchFromGitHub, autoreconfHook, ldc, installShellFiles, pkgconfig
 , curl, sqlite, libnotify
 , withSystemd ? stdenv.isLinux, systemd ? null }:
 
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
     sha256 = "10s33p1xzq9c5n1bxv9n7n31afxgx9i6c17w0xgxdrma75micm3a";
   };
 
-  nativeBuildInputs = [ autoreconfHook dmd installShellFiles pkgconfig ];
+  nativeBuildInputs = [ autoreconfHook ldc installShellFiles pkgconfig ];
 
   buildInputs = [
     curl sqlite libnotify