mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
Merge pull request #2826 from ehmry/ncdc
ncdc: update to 1.19.1 for security fixes
This commit is contained in:
commit
6b1f92e106
1 changed files with 7 additions and 5 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue