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

27 lines
640 B
Nix
Raw Normal View History

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