at 24.05-pre 24 lines 585 B view raw
1{ lib, stdenv, fetchurl, ncurses, readline, flex, texinfo }: 2 3stdenv.mkDerivation rec { 4 pname = "cgdb"; 5 version = "0.8.0"; 6 7 src = fetchurl { 8 url = "https://cgdb.me/files/${pname}-${version}.tar.gz"; 9 sha256 = "sha256-DTi1JNN3JXsQa61thW2K4zBBQOHuJAhTQ+bd8bZYEfE="; 10 }; 11 12 buildInputs = [ ncurses readline flex texinfo ]; 13 14 meta = with lib; { 15 description = "A curses interface to gdb"; 16 17 homepage = "https://cgdb.github.io/"; 18 19 license = licenses.gpl2Plus; 20 21 platforms = with platforms; linux ++ cygwin; 22 maintainers = with maintainers; [ vrthra ]; 23 }; 24}