57a544d59c
improved error reporting, the ability to trace execution in a comprehensible way, and a debugger. svn path=/nixpkgs/trunk/; revision=17744
16 lines
401 B
Nix
16 lines
401 B
Nix
{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";
|
|
};
|
|
}
|