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:
parent
9d71e990a1
commit
57a544d59c
15
pkgs/development/tools/build-managers/remake/default.nix
Normal file
15
pkgs/development/tools/build-managers/remake/default.nix
Normal 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";
|
||||||
|
};
|
||||||
|
}
|
@ -2827,6 +2827,10 @@ let
|
|||||||
inherit composableDerivation fetchurl transfig texLive;
|
inherit composableDerivation fetchurl transfig texLive;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
remake = import ../development/tools/build-managers/remake {
|
||||||
|
inherit fetchurl stdenv;
|
||||||
|
};
|
||||||
|
|
||||||
# couldn't find the source yet
|
# couldn't find the source yet
|
||||||
seleniumRCBin = import ../development/tools/selenium/remote-control {
|
seleniumRCBin = import ../development/tools/selenium/remote-control {
|
||||||
inherit fetchurl stdenv unzip;
|
inherit fetchurl stdenv unzip;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user