redo: Init at 1.2

Redo is an alternative for Make. This package is a C++ implementation
of redo.
This commit is contained in:
Rahul Gopinath 2016-05-25 11:43:47 -07:00
parent 331fa2feff
commit df40533f11
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{stdenv, fetchurl, perl }:
stdenv.mkDerivation rec {
name = "redo-1.2";
src = fetchurl {
url = "http://homepage.ntlworld.com/jonathan.deboynepollard/Softwares/${name}.tar.bz2";
sha256 = "0hfbiljmgl821a0sf7abrfx29f22ahrgs86mrlrm8m95s7387kpp";
};
nativeBuildInputs = [ perl /* for pod2man */ ];
sourceRoot = ".";
buildPhase = ''
./package/compile
'';
installPhase = ''
./package/export $out/
'';
meta = {
homepage = http://homepage.ntlworld.com/jonathan.deboynepollard/Softwares/redo.html;
description = "A system for building target files from source files";
license = stdenv.lib.licenses.bsd2;
maintainers = [ stdenv.lib.maintainers.vrthra ];
platforms = stdenv.lib.platforms.unix;
};
}

View file

@ -6373,6 +6373,8 @@ in
ruby = ruby_2_0;
};
redo = callPackage ../development/tools/build-managers/redo { };
re2c = callPackage ../development/tools/parsing/re2c { };
remake = callPackage ../development/tools/build-managers/remake { };