about summary refs log tree commit diff
path: root/pkgs/development/tools/misc/cgdb/default.nix
blob: 09c9325d4ff27e717176dbff21b4918ddbcccce5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ 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/;

    repositories.git = git://github.com/cgdb/cgdb.git;

    license = stdenv.lib.licenses.gpl2Plus;

    platforms = with stdenv.lib.platforms; linux ++ cygwin;
    maintainers = with stdenv.lib.maintainers; [ viric ];
  };
}