about summary refs log tree commit diff
path: root/pkgs/development/tools/misc/bashdb/default.nix
blob: 67a2b20466ece2a4feb6dd47359007675e5ea45c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  name = "bashdb-4.4-0.94";

  src = fetchurl {
    url =  "mirror://sourceforge/bashdb/${name}.tar.bz2";
    sha256 = "01n0dml866sacls7q8h1c6mm4nc47lq3vrar9idmkajky71aycar";
  };

  meta = {
    description = "Bash script debugger";
    homepage = http://bashdb.sourceforge.net/;
    license = stdenv.lib.licenses.gpl2;
    platforms = stdenv.lib.platforms.linux;
  };
}