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