mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
added cgdb (ncrurses based gdb frontend)
svn path=/nixpkgs/trunk/; revision=14055
This commit is contained in:
parent
498be42912
commit
f936925abf
17
pkgs/tools/misc/cgdb/default.nix
Normal file
17
pkgs/tools/misc/cgdb/default.nix
Normal file
@ -0,0 +1,17 @@
|
||||
args:
|
||||
args.stdenv.mkDerivation {
|
||||
name = "cgdb-0.6.4";
|
||||
|
||||
src = args.fetchurl {
|
||||
url = http://prdownloads.sourceforge.net/cgdb/cgdb-0.6.4.tar.gz?download;
|
||||
sha256 = "10c03p3bbr1glyw7j2i2sv97riiksw972pdamcqdqrzzfdcly54w";
|
||||
};
|
||||
|
||||
buildInputs =(with args; [readline ncurses]);
|
||||
|
||||
meta = {
|
||||
description = "curses interface to gdb";
|
||||
homepage = http://cgdb.sourceforge.net/;
|
||||
license ="GPLv2";
|
||||
};
|
||||
}
|
@ -483,6 +483,10 @@ let
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
cgdb = import ../tools/misc/cgdb {
|
||||
inherit fetchurl stdenv ncurses readline;
|
||||
};
|
||||
|
||||
ccrypt = import ../tools/security/ccrypt {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user