Skip to content

Commit

Permalink
ncdc: update to 1.19.1 for security fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ehmry committed Jun 4, 2014
1 parent bc53b9e commit 6306d81
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions pkgs/applications/networking/p2p/ncdc/default.nix
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
{ stdenv, fetchurl, ncurses, zlib, bzip2, sqlite, pkgconfig, glib, gnutls }:

stdenv.mkDerivation rec {
let
version = "1.19.1";
in
stdenv.mkDerivation {
name = "ncdc-${version}";
version = "1.19";

src = fetchurl {
url = "http://dev.yorhel.nl/download/ncdc-1.19.tar.gz";
sha256 = "1wgvqwfxq9kc729h2r528n55821w87sfbm4h21mr6pvkpfw30hf2";
url = "http://dev.yorhel.nl/download/ncdc-${version}.tar.gz";
sha256 = "0iwx4b3x207sw11qqjfynpwnhryhixjzbgcy9l9zfisa8f0k7cm6";
};

buildInputs = [ ncurses zlib bzip2 sqlite pkgconfig glib gnutls ];

meta = {
description = "modern and lightweight direct connect client with a friendly ncurses interface";
description = "Modern and lightweight direct connect client with a friendly ncurses interface";
homepage = http://dev.yorhel.nl/ncdc;
license = stdenv.lib.licenses.mit;
platforms = stdenv.lib.platforms.linux; # arbitrary
Expand Down

0 comments on commit 6306d81

Please sign in to comment.