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

27 lines
646 B
Nix
Raw Normal View History

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