diff --git a/pkgs/development/tools/misc/cgdb/default.nix b/pkgs/development/tools/misc/cgdb/default.nix index fa13b4d6ebb..b9a517f671f 100644 --- a/pkgs/development/tools/misc/cgdb/default.nix +++ b/pkgs/development/tools/misc/cgdb/default.nix @@ -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 ]; }; }