2017-06-01 13:04:08 -07:00
|
|
|
{ stdenv, fetchurl, ncurses, readline, flex, texinfo }:
|
2012-06-27 11:29:56 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-11-02 12:47:54 -08:00
|
|
|
name = "cgdb-${version}";
|
2017-06-01 03:47:36 -07:00
|
|
|
version = "0.7.0";
|
2012-06-27 11:29:56 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 11:43:35 -07:00
|
|
|
url = "https://cgdb.me/files/${name}.tar.gz";
|
2017-06-01 03:47:36 -07:00
|
|
|
sha256 = "08slzg3702v5nivjhdx2bciqxc5vqcn8pc4i4lsgkcwdcrj94ymz";
|
2012-06-27 11:29:56 -07:00
|
|
|
};
|
|
|
|
|
2017-06-01 13:04:08 -07:00
|
|
|
buildInputs = [ ncurses readline flex texinfo ];
|
2012-06-27 11:29:56 -07:00
|
|
|
|
2016-06-26 16:21:06 -07:00
|
|
|
meta = with stdenv.lib; {
|
2012-06-27 11:29:56 -07:00
|
|
|
description = "A curses interface to gdb";
|
|
|
|
|
2014-11-02 12:47:54 -08:00
|
|
|
homepage = https://cgdb.github.io/;
|
2012-06-27 11:29:56 -07:00
|
|
|
|
2014-02-13 23:34:30 -08:00
|
|
|
repositories.git = git://github.com/cgdb/cgdb.git;
|
|
|
|
|
2016-06-26 16:21:06 -07:00
|
|
|
license = licenses.gpl2Plus;
|
2012-06-27 11:29:56 -07:00
|
|
|
|
2016-06-26 16:21:06 -07:00
|
|
|
platforms = with platforms; linux ++ cygwin;
|
2018-07-22 12:50:19 -07:00
|
|
|
maintainers = with maintainers; [ vrthra ];
|
2012-06-27 11:29:56 -07:00
|
|
|
};
|
|
|
|
}
|