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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
611 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, ncurses, readline, flex, texinfo }:
2012-06-27 18:29:56 +00:00
stdenv.mkDerivation rec {
pname = "cgdb";
2022-01-16 19:27:17 +00:00
version = "0.8.0";
2012-06-27 18:29:56 +00:00
src = fetchurl {
url = "https://cgdb.me/files/${pname}-${version}.tar.gz";
2022-01-16 19:27:17 +00:00
sha256 = "sha256-DTi1JNN3JXsQa61thW2K4zBBQOHuJAhTQ+bd8bZYEfE=";
2012-06-27 18:29:56 +00:00
};
buildInputs = [ ncurses readline flex texinfo ];
2012-06-27 18:29:56 +00:00
meta = with lib; {
2012-06-27 18:29:56 +00:00
description = "A curses interface to gdb";
mainProgram = "cgdb";
2012-06-27 18:29:56 +00:00
homepage = "https://cgdb.github.io/";
2012-06-27 18:29:56 +00:00
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
};
}