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.
29 lines
781 B
Nix
29 lines
781 B
Nix
{ lib, stdenv, fetchFromGitHub, autoreconfHook, cmake, libtool, pkg-config
|
|
, zlib, openssl, libevent, ncurses, ruby, msgpack, libssh }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "tmate-ssh-server";
|
|
version = "2.3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tmate-io";
|
|
repo = "tmate-ssh-server";
|
|
rev = version;
|
|
sha256 = "1y77mv1k4c79glj84lzlp0s1lafr1jzf60mywr5vhy6sq47q8hwd";
|
|
};
|
|
|
|
dontUseCmakeConfigure = true;
|
|
|
|
buildInputs = [ libtool zlib openssl libevent ncurses ruby msgpack libssh ];
|
|
nativeBuildInputs = [ autoreconfHook cmake pkg-config ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://tmate.io/";
|
|
description = "tmate SSH Server";
|
|
license = licenses.mit;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|
|
|