nixpkgs/pkgs/applications/networking/p2p/ncdc/default.nix
Silvan Mosberger 57bccb3cb8 treewide: http -> https sources (#42676)
* treewide: http -> https sources

This updates the source urls of all top-level packages from http to
https where possible.

* buildtorrent: fix url and tab -> spaces
2018-06-28 20:43:35 +02:00

23 lines
709 B
Nix

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