mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
bashdb: init at 4.4-0.92 (#22275)
This commit is contained in:
parent
2f78639819
commit
2eb8163fae
17
pkgs/development/tools/misc/bashdb/default.nix
Normal file
17
pkgs/development/tools/misc/bashdb/default.nix
Normal file
@ -0,0 +1,17 @@
|
||||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "bashdb-4.4-0.92";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/bashdb/${name}.tar.bz2";
|
||||
sha256 = "6a8c2655e04339b954731a0cb0d9910e2878e45b2fc08fe469b93e4f2dbaaf92";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "Bash script debugger";
|
||||
homepage = http://bashdb.sourceforge.net/;
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
@ -6728,6 +6728,8 @@ with pkgs;
|
||||
ruby = ruby_2_2;
|
||||
};
|
||||
|
||||
bashdb = callPackage ../development/tools/misc/bashdb { };
|
||||
|
||||
gdb = callPackage ../development/tools/misc/gdb {
|
||||
guile = null;
|
||||
hurd = gnu.hurdCross;
|
||||
|
Loading…
Reference in New Issue
Block a user