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

27 lines
645 B
Nix
Raw Normal View History

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