forked from mirrors/nixpkgs
cgdb: Packaging cgdb 0.6.6
This commit is contained in:
parent
4c06f5fcda
commit
db395d9eb3
23
pkgs/development/tools/misc/cgdb/default.nix
Normal file
23
pkgs/development/tools/misc/cgdb/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ stdenv, fetchurl, ncurses, readline }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "cgdb-0.6.6";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/cgdb/${name}.tar.gz";
|
||||
sha256 = "0iap84ikpk1h58wy14zzi1kwszv1hsnvpvnz14swkz54yrh9z7ng";
|
||||
};
|
||||
|
||||
buildInputs = [ ncurses readline ];
|
||||
|
||||
meta = {
|
||||
description = "A curses interface to gdb";
|
||||
|
||||
homepage = http://cgdb.sourceforge.net/;
|
||||
|
||||
license = "GPLv2+";
|
||||
|
||||
platforms = with stdenv.lib.platforms; linux ++ cygwin;
|
||||
maintainers = with stdenv.lib.maintainers; [ viric ];
|
||||
};
|
||||
}
|
|
@ -2898,6 +2898,8 @@ let
|
|||
wrapGCC (ccache.links extraConfig)) {};
|
||||
ccacheStdenv = overrideGCC stdenv ccacheWrapper;
|
||||
|
||||
cgdb = callPackage ../development/tools/misc/cgdb { };
|
||||
|
||||
complexity = callPackage ../development/tools/misc/complexity { };
|
||||
|
||||
ctags = callPackage ../development/tools/misc/ctags { };
|
||||
|
|
Loading…
Reference in a new issue