nixpkgs/pkgs/development/tools/build-managers/remake/default.nix
Lluís Batlle i Rossell 57a544d59c 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
2009-10-11 15:03:13 +00:00

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";
};
}