Literate: unstable-2020-09-02 -> unstable-2021-01-22

Compile with ldc instead of dmd

authored by Thomas Mader and committed by adisbladis 6cfbedca 2810e263

+5 -5
+5 -5
pkgs/development/tools/literate-programming/Literate/default.nix
··· 1 - { lib, stdenv, fetchgit, dmd, dub }: 1 + { lib, stdenv, fetchgit, ldc, dub }: 2 2 3 3 stdenv.mkDerivation { 4 4 pname = "Literate"; 5 - version = "unstable-2020-09-02"; 5 + version = "unstable-2021-01-22"; 6 6 7 7 src = fetchgit { 8 8 url = "https://github.com/zyedidia/Literate.git"; 9 - rev = "533991cca6ec7a608a778396d32d51b35182d944"; 10 - sha256 = "09h1as01z0fw0bj0kf1g9nlhvinya7sqq2x8qb6zmhvqqm6v4n49"; 9 + rev = "7004dffec0cff3068828514eca72172274fd3f7d"; 10 + sha256 = "0x4xgrdskybaa7ssv81grmwyc1k167v3nwj320jvp5l59xxlbcvs"; 11 11 }; 12 12 13 - buildInputs = [ dmd dub ]; 13 + buildInputs = [ ldc dub ]; 14 14 15 15 installPhase = "install -D bin/lit $out/bin/lit"; 16 16