2012-06-27 19:29:56 +01:00
|
|
|
{ stdenv, fetchurl, ncurses, readline }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-11-02 20:47:54 +00:00
|
|
|
name = "cgdb-${version}";
|
|
|
|
version = "0.6.7";
|
2012-06-27 19:29:56 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-11-02 20:47:54 +00:00
|
|
|
url = "http://cgdb.me/files/${name}.tar.gz";
|
|
|
|
sha256 = "1agxk6a97v6q0n097zw57qqpaza4j79jg36x99bh8yl23qfx6kh7";
|
2012-06-27 19:29:56 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ ncurses readline ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A curses interface to gdb";
|
|
|
|
|
2014-11-02 20:47:54 +00:00
|
|
|
homepage = https://cgdb.github.io/;
|
2012-06-27 19:29:56 +01:00
|
|
|
|
2014-02-14 07:34:30 +00:00
|
|
|
repositories.git = git://github.com/cgdb/cgdb.git;
|
|
|
|
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2012-06-27 19:29:56 +01:00
|
|
|
|
|
|
|
platforms = with stdenv.lib.platforms; linux ++ cygwin;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ viric ];
|
|
|
|
};
|
|
|
|
}
|