forked from mirrors/nixpkgs
9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
23 lines
703 B
Nix
23 lines
703 B
Nix
{ lib, stdenv, fetchurl, ncurses, zlib, bzip2, sqlite, pkg-config, glib, gnutls }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ncdc";
|
|
version = "1.22.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://dev.yorhel.nl/download/ncdc-${version}.tar.gz";
|
|
sha256 = "1bdgqd07f026qk6vpbxqsin536znd33931m3b4z44prlm9wd6pyi";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ ncurses zlib bzip2 sqlite glib gnutls ];
|
|
|
|
meta = with lib; {
|
|
description = "Modern and lightweight direct connect client with a friendly ncurses interface";
|
|
homepage = "https://dev.yorhel.nl/ncdc";
|
|
license = licenses.mit;
|
|
platforms = platforms.linux; # arbitrary
|
|
maintainers = with maintainers; [ ehmry ];
|
|
};
|
|
}
|