3
0
Fork 0
forked from mirrors/nixpkgs

Adding 'remake': a patched and modernized version of GNU make utility that adds

improved error reporting, the ability to trace execution in a comprehensible
way, and a debugger.

svn path=/nixpkgs/trunk/; revision=17744
This commit is contained in:
Lluís Batlle i Rossell 2009-10-11 15:03:13 +00:00
parent 9d71e990a1
commit 57a544d59c
2 changed files with 19 additions and 0 deletions

View file

@ -0,0 +1,15 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "remake-3.81-dbg-0.2";
src = fetchurl {
url = mirror://sourceforge/bashdb/remake-3.81+dbg-0.2.tar.gz;
sha256 = "0mhc06zgd39dl8rk16ii0m2x22b9zi67d48km7rn0fzzv519lmwc";
};
meta = {
homepage = http://bashdb.sourceforge.net/remake/;
license = "GPL";
description = "GNU Make with comprehensible tracing and a debugger";
};
}

View file

@ -2827,6 +2827,10 @@ let
inherit composableDerivation fetchurl transfig texLive;
};
remake = import ../development/tools/build-managers/remake {
inherit fetchurl stdenv;
};
# couldn't find the source yet
seleniumRCBin = import ../development/tools/selenium/remote-control {
inherit fetchurl stdenv unzip;