fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ stdenv, fetchurl, ncurses, readline }:
2
3stdenv.mkDerivation rec {
4 name = "cgdb-${version}";
5 version = "0.6.7";
6
7 src = fetchurl {
8 url = "http://cgdb.me/files/${name}.tar.gz";
9 sha256 = "1agxk6a97v6q0n097zw57qqpaza4j79jg36x99bh8yl23qfx6kh7";
10 };
11
12 buildInputs = [ ncurses readline ];
13
14 meta = {
15 description = "A curses interface to gdb";
16
17 homepage = https://cgdb.github.io/;
18
19 repositories.git = git://github.com/cgdb/cgdb.git;
20
21 license = stdenv.lib.licenses.gpl2Plus;
22
23 platforms = with stdenv.lib.platforms; linux ++ cygwin;
24 maintainers = with stdenv.lib.maintainers; [ viric ];
25 };
26}