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

27 lines
642 B
Nix
Raw Normal View History

{ stdenv, fetchurl, ncurses, readline, flex, texinfo }:
2012-06-27 18:29:56 +00:00
stdenv.mkDerivation rec {
pname = "cgdb";
version = "0.7.1";
2012-06-27 18:29:56 +00:00
src = fetchurl {
url = "https://cgdb.me/files/${pname}-${version}.tar.gz";
sha256 = "1671gpz5gx5j0zga8xy2x7h33vqh3nij93lbb6dbb366ivjknwmv";
2012-06-27 18:29:56 +00:00
};
buildInputs = [ ncurses readline flex texinfo ];
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; [ vrthra ];
2012-06-27 18:29:56 +00:00
};
}