Merge pull request #16536 from vrthra/cgdb

cgdb: 0.6.7 -> 0.6.8
This commit is contained in:
Arseniy Seroka 2016-06-27 16:44:59 +03:00 committed by GitHub
commit a5b3517fd8

View file

@ -1,26 +1,26 @@
{ stdenv, fetchurl, ncurses, readline }:
{ stdenv, fetchurl, ncurses, readline, flex, texinfo, help2man }:
stdenv.mkDerivation rec {
name = "cgdb-${version}";
version = "0.6.7";
version = "0.6.8";
src = fetchurl {
url = "http://cgdb.me/files/${name}.tar.gz";
sha256 = "1agxk6a97v6q0n097zw57qqpaza4j79jg36x99bh8yl23qfx6kh7";
sha256 = "0hfgyj8jimb7imqlfdpzaln787r6r0yzwzmnk91rfl19pqlkw85y";
};
buildInputs = [ ncurses readline ];
buildInputs = [ ncurses readline flex texinfo help2man ];
meta = {
meta = with stdenv.lib; {
description = "A curses interface to gdb";
homepage = https://cgdb.github.io/;
repositories.git = git://github.com/cgdb/cgdb.git;
license = stdenv.lib.licenses.gpl2Plus;
license = licenses.gpl2Plus;
platforms = with stdenv.lib.platforms; linux ++ cygwin;
maintainers = with stdenv.lib.maintainers; [ viric ];
platforms = with platforms; linux ++ cygwin;
maintainers = with maintainers; [ viric vrthra ];
};
}