cgdb: 0.6.7 -> 0.6.8

This commit is contained in:
Rahul Gopinath 2016-06-26 16:21:06 -07:00
parent 4fb72b2fd3
commit c3d10d6d0d

View File

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