nixpkgs/pkgs/applications/networking/p2p/ncdc/default.nix

23 lines
708 B
Nix
Raw Normal View History

{ stdenv, fetchurl, ncurses, zlib, bzip2, sqlite, pkgconfig, glib, gnutls }:
2017-03-04 02:06:15 +00:00
stdenv.mkDerivation rec {
name = "ncdc-${version}";
2017-03-04 02:06:15 +00:00
version = "1.20";
src = fetchurl {
url = "http://dev.yorhel.nl/download/ncdc-${version}.tar.gz";
2017-03-04 02:06:15 +00:00
sha256 = "0ccn7dqbqpqsbglqyalz32c20rjvf1pw0zr88jyvd2b2vxbqi6ca";
};
2017-03-04 02:06:15 +00:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ ncurses zlib bzip2 sqlite glib gnutls ];
2017-03-04 02:06:15 +00:00
meta = with stdenv.lib; {
description = "Modern and lightweight direct connect client with a friendly ncurses interface";
homepage = https://dev.yorhel.nl/ncdc;
2017-03-04 02:06:15 +00:00
license = licenses.mit;
platforms = platforms.linux; # arbitrary
maintainers = with maintainers; [ ehmry ];
};
}