nixpkgs-suyu/pkgs/development/tools/literate-programming/Literate/default.nix

24 lines
622 B
Nix
Raw Normal View History

{ lib, stdenv, fetchgit, ldc, dub }:
2017-08-13 03:59:47 +02:00
stdenv.mkDerivation {
pname = "Literate";
version = "unstable-2021-01-22";
2017-08-27 08:25:05 +02:00
2017-08-13 03:59:47 +02:00
src = fetchgit {
url = "https://github.com/zyedidia/Literate.git";
rev = "7004dffec0cff3068828514eca72172274fd3f7d";
sha256 = "0x4xgrdskybaa7ssv81grmwyc1k167v3nwj320jvp5l59xxlbcvs";
2017-08-13 03:59:47 +02:00
};
2017-08-27 08:25:05 +02:00
buildInputs = [ ldc dub ];
2017-08-27 08:25:05 +02:00
installPhase = "install -D bin/lit $out/bin/lit";
meta = with lib; {
2017-08-27 08:25:05 +02:00
description = "A literate programming tool for any language";
homepage = "http://literate.zbyedidia.webfactional.com/";
2017-08-27 08:25:05 +02:00
license = licenses.mit;
platforms = platforms.unix;
};
2017-08-13 03:59:47 +02:00
}