nixpkgs/pkgs/development/tools/misc/cgdb/default.nix

27 lines
664 B
Nix
Raw Normal View History

2016-06-26 23:21:06 +00:00
{ stdenv, fetchurl, ncurses, readline, flex, texinfo, help2man }:
2012-06-27 18:29:56 +00:00
stdenv.mkDerivation rec {
2014-11-02 20:47:54 +00:00
name = "cgdb-${version}";
2017-06-01 10:47:36 +00:00
version = "0.7.0";
2012-06-27 18:29:56 +00:00
src = fetchurl {
2014-11-02 20:47:54 +00:00
url = "http://cgdb.me/files/${name}.tar.gz";
2017-06-01 10:47:36 +00:00
sha256 = "08slzg3702v5nivjhdx2bciqxc5vqcn8pc4i4lsgkcwdcrj94ymz";
2012-06-27 18:29:56 +00:00
};
2016-06-26 23:21:06 +00:00
buildInputs = [ ncurses readline flex texinfo help2man ];
2012-06-27 18:29:56 +00:00
2016-06-26 23:21:06 +00:00
meta = with stdenv.lib; {
2012-06-27 18:29:56 +00:00
description = "A curses interface to gdb";
2014-11-02 20:47:54 +00:00
homepage = https://cgdb.github.io/;
2012-06-27 18:29:56 +00:00
repositories.git = git://github.com/cgdb/cgdb.git;
2016-06-26 23:21:06 +00:00
license = licenses.gpl2Plus;
2012-06-27 18:29:56 +00:00
2016-06-26 23:21:06 +00:00
platforms = with platforms; linux ++ cygwin;
maintainers = with maintainers; [ viric vrthra ];
2012-06-27 18:29:56 +00:00
};
}