1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-04 19:45:54 +00:00
nixpkgs/pkgs/development/tools/misc/bashdb/default.nix

18 lines
421 B
Nix
Raw Normal View History

2017-01-29 22:05:04 +00:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "bashdb-4.4-0.94";
2017-01-29 22:05:04 +00:00
src = fetchurl {
url = "mirror://sourceforge/bashdb/${name}.tar.bz2";
sha256 = "01n0dml866sacls7q8h1c6mm4nc47lq3vrar9idmkajky71aycar";
2017-01-29 22:05:04 +00:00
};
meta = {
2017-01-29 22:05:04 +00:00
description = "Bash script debugger";
homepage = http://bashdb.sourceforge.net/;
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.linux;
};
}