tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
ncdc: update to 1.19.1 for security fixes
Emery Hemingway
11 years ago
6306d81e
bc53b9ec
+7
-5
1 changed file
expand all
collapse all
unified
split
pkgs
applications
networking
p2p
ncdc
default.nix
+7
-5
pkgs/applications/networking/p2p/ncdc/default.nix
···
1
1
{ stdenv, fetchurl, ncurses, zlib, bzip2, sqlite, pkgconfig, glib, gnutls }:
2
2
3
3
-
stdenv.mkDerivation rec {
3
3
+
let
4
4
+
version = "1.19.1";
5
5
+
in
6
6
+
stdenv.mkDerivation {
4
7
name = "ncdc-${version}";
5
5
-
version = "1.19";
6
8
7
9
src = fetchurl {
8
8
-
url = "http://dev.yorhel.nl/download/ncdc-1.19.tar.gz";
9
9
-
sha256 = "1wgvqwfxq9kc729h2r528n55821w87sfbm4h21mr6pvkpfw30hf2";
10
10
+
url = "http://dev.yorhel.nl/download/ncdc-${version}.tar.gz";
11
11
+
sha256 = "0iwx4b3x207sw11qqjfynpwnhryhixjzbgcy9l9zfisa8f0k7cm6";
10
12
};
11
13
12
14
buildInputs = [ ncurses zlib bzip2 sqlite pkgconfig glib gnutls ];
13
15
14
16
meta = {
15
15
-
description = "modern and lightweight direct connect client with a friendly ncurses interface";
17
17
+
description = "Modern and lightweight direct connect client with a friendly ncurses interface";
16
18
homepage = http://dev.yorhel.nl/ncdc;
17
19
license = stdenv.lib.licenses.mit;
18
20
platforms = stdenv.lib.platforms.linux; # arbitrary