Literate: adapt to nixpkgs standards

This commit is contained in:
Jörg Thalheim 2017-08-27 07:25:05 +01:00
parent 02d52d8f93
commit 916f1a0b8d

View File

@ -1,17 +1,22 @@
{ stdenv, fetchgit, dmd, dub }:
stdenv.mkDerivation {
name = "Literate";
name = "Literate-2017-05-28";
src = fetchgit {
url = "https://github.com/zyedidia/Literate.git";
rev = "23928d64bb19b5101dbcc794da6119beaf59f679";
sha256 = "094lramvacarzj8443ns18zyv7dxnivwi7kdk5xi5r2z4gx338iq";
};
buildInputs = [dmd dub];
preInstall = ''
# Gross, but the Makefile doesn't provide an install target
mkdir $out
cp -R bin $out/bin
'';
phases = "unpackPhase patchPhase buildPhase checkPhase preInstall fixupPhase";
buildInputs = [ dmd dub ];
installPhase = "install -D bin/lit $out/bin/lit";
meta = with stdenv.lib; {
description = "A literate programming tool for any language";
homepage = http://literate.zbyedidia.webfactional.com/;
license = licenses.mit;
platforms = platforms.unix;
};
}