summary refs log tree commit diff
path: root/pkgs/development/tools/misc/cgdb
diff options
context:
space:
mode:
authorRahul Gopinath <rahul@gopinath.org>2016-06-26 16:21:06 -0700
committerRahul Gopinath <rahul@gopinath.org>2016-06-26 16:21:06 -0700
commitc3d10d6d0de73aebd06285fd9c1705951363d1c1 (patch)
tree3cec671c51bf5c19d5c3e4147144d2b85ff2fe8d /pkgs/development/tools/misc/cgdb
parent4fb72b2fd3767c17e653b7804db141179fdf1aa4 (diff)
downloadnixpkgs-c3d10d6d0de73aebd06285fd9c1705951363d1c1.tar
nixpkgs-c3d10d6d0de73aebd06285fd9c1705951363d1c1.tar.gz
nixpkgs-c3d10d6d0de73aebd06285fd9c1705951363d1c1.tar.bz2
nixpkgs-c3d10d6d0de73aebd06285fd9c1705951363d1c1.tar.lz
nixpkgs-c3d10d6d0de73aebd06285fd9c1705951363d1c1.tar.xz
nixpkgs-c3d10d6d0de73aebd06285fd9c1705951363d1c1.tar.zst
nixpkgs-c3d10d6d0de73aebd06285fd9c1705951363d1c1.zip
cgdb: 0.6.7 -> 0.6.8
Diffstat (limited to 'pkgs/development/tools/misc/cgdb')
-rw-r--r--pkgs/development/tools/misc/cgdb/default.nix16
1 files changed, 8 insertions, 8 deletions
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 ];
   };
 }