git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
25 lines
584 B
Nix
25 lines
584 B
Nix
{ lib, stdenv, fetchurl, ncurses, readline, flex, texinfo }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "cgdb";
|
|
version = "0.8.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://cgdb.me/files/${pname}-${version}.tar.gz";
|
|
sha256 = "sha256-DTi1JNN3JXsQa61thW2K4zBBQOHuJAhTQ+bd8bZYEfE=";
|
|
};
|
|
|
|
buildInputs = [ ncurses readline flex texinfo ];
|
|
|
|
meta = with lib; {
|
|
description = "Curses interface to gdb";
|
|
mainProgram = "cgdb";
|
|
|
|
homepage = "https://cgdb.github.io/";
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = with platforms; linux ++ cygwin;
|
|
maintainers = [ ];
|
|
};
|
|
}
|