aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/dc.scm
blob: ae019da6e827236e6ca11ace13b6fe23723bd107 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2014 Sree Harsha Totakura <sreeharsha@totakura.in>
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
;;;
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

(define-module (gnu packages dc)
  #:use-module (gnu packages)
  #:use-module (gnu packages compression)
  #:use-module (gnu packages glib)
  #:use-module (gnu packages ncurses)
  #:use-module (gnu packages pkg-config)
  #:use-module (gnu packages databases)
  #:use-module (gnu packages tls)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix build-system gnu)
  #:use-module ((guix licenses) #:prefix license:))

(define-public ncdc
  (package
    (name "ncdc")
    (version "1.20")
    (source
     (origin
       (method url-fetch)
       (uri (string-append "http://dev.yorhel.nl/download/ncdc-" version
                           ".tar.gz"))
       (sha256 (base32
                "0ccn7dqbqpqsbglqyalz32c20rjvf1pw0zr88jyvd2b2vxbqi6ca"))))
    (build-system gnu-build-system)
    (inputs
     `(("bzip2" ,bzip2)
       ("glib" ,glib)
       ("gnutls" ,gnutls)
       ("ncurses" ,ncurses)
       ("sqlite" ,sqlite)
       ("zlib" ,zlib)))
    (native-inputs
     `(("pkg-config" ,pkg-config)))
    (home-page "https://dev.yorhel.nl/ncdc")
    (synopsis
     "Lightweight direct connect client with a friendly ncurses interface")
    (description
     "Ncdc is a client for the Direct Connect peer-to-peer protocol implemented
using ncurses.  It is known for its smaller footprint and ease of use.")
    (license license:x11)))
f1be21e550b42e88ee28e524d886'>gnu: openssl@1.1: Really replace with fixed version....Ludovic Courtès 2023-08-13gnu: libressl: Update to 3.7.3 [fixes CVE-2023-35784]....Tobias Geerinckx-Rice 2023-07-20gnu: openssl-1.1: Fix shared build for the Hurd....Janneke Nieuwenhuizen 2023-07-20gnu: openssl: Build fix for the Hurd....Janneke Nieuwenhuizen 2023-06-25gnu: aws-lc: Fix tests....Greg Hogan 2023-06-17gnu: Use target-hurd?, system-hurd? instead of hurd-target?, hurd-system?....Janneke Nieuwenhuizen 2023-05-11gnu: guile-gnutls: Fix cross-compilation....Ludovic Courtès 2023-05-10gnu: guile-gnutls: Update to 3.7.12....Christopher Baines 2023-04-25gnu: gnutls: Don't embed a phase inside another phase....Efraim Flashner 2023-04-25gnu: perl-crypt-openssl-rsa: Update to 0.33....Efraim Flashner 2023-04-19gnu: gnutls: Extend test timeout on powerpc-linux....Efraim Flashner 2023-04-18gnu: openssl: Update cross-configure target for riscv64-linux ....Efraim Flashner 2023-03-20Merge remote-tracking branch 'origin/master' into core-updatesAndreas Enge 2023-03-17gnu: guile-gnutls: Do not expect gnulib shebangs to work....Vivien Kraus 2023-03-02Merge remote-tracking branch 'savannah/master' into core-updates...Christopher Baines 2023-02-26gnu: openssl-1.1: Specify TESTS Make variable via #:make-flags....Maxim Cournoyer 2023-02-26gnu: openssl-1.1: Clean-up definition....Maxim Cournoyer 2023-02-26gnu: gnutls: Deprecate 'gnutls-latest'....Ludovic Courtès 2023-02-26gnu: gnutls: Remove Guile dependency....Ludovic Courtès 2023-03-02gnu: python-acme, certbot: Update to 2.3.0....Jack Hill 2023-02-17gnu: p11-kit-next: Switch to meson-build-system....Vivien Kraus 2023-02-11gnu: OpenSSL 3: Update to 3.0.8 [security fixes]....Leo Famulari 2023-02-11gnu: OpenSSL: Update to 1.1.1t [security fixes]....Leo Famulari 2023-01-30Merge remote-tracking branch 'origin/master' into core-updates...Efraim Flashner 2023-01-22gnu: guile-gnutls: Use gnutls-latest consistently....Tobias Geerinckx-Rice 2023-01-15gnu: guile-gnutls: Update to 3.7.11....Vivien Kraus 2022-12-13gnu: guile-gnutls: Add properties for the 'generic-git' updater....Ludovic Courtès