Merge branch 'ncdc' of git://github.com/ehmry/nixpkgs

ncdc: initial expression
This commit is contained in:
Shea Levy 2014-03-22 21:36:24 -04:00
commit 5fca5a4435
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,19 @@
{ stdenv, fetchurl, ncurses, zlib, bzip2, sqlite, pkgconfig, glib, gnutls }:
stdenv.mkDerivation rec {
name = "ncdc-${version}";
version = "1.19";
src = fetchurl {
url = "http://dev.yorhel.nl/download/ncdc-1.19.tar.gz";
sha256 = "1wgvqwfxq9kc729h2r528n55821w87sfbm4h21mr6pvkpfw30hf2";
};
buildInputs = [ ncurses zlib bzip2 sqlite pkgconfig glib gnutls ];
meta = {
description = "modern and lightweight direct connect client with a friendly ncurses interface";
homepage = http://dev.yorhel.nl/ncdc;
license = stdenv.lib.licenses.mit;
};
}

View File

@ -8678,6 +8678,8 @@ let
ncdu = callPackage ../tools/misc/ncdu { }; ncdu = callPackage ../tools/misc/ncdu { };
ncdc = callPackage ../applications/networking/p2p/ncdc { };
nedit = callPackage ../applications/editors/nedit { nedit = callPackage ../applications/editors/nedit {
motif = lesstif; motif = lesstif;
}; };