Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 43 lines 909 B view raw
1{ lib 2, stdenv 3, fetchFromGitHub 4, autoreconfHook 5, cmake 6, libtool 7, pkg-config 8, zlib 9, openssl 10, libevent 11, ncurses 12, ruby 13, msgpack 14, libssh 15, nixosTests 16}: 17 18stdenv.mkDerivation rec { 19 pname = "tmate-ssh-server"; 20 version = "unstable-2021-10-17"; 21 22 src = fetchFromGitHub { 23 owner = "tmate-io"; 24 repo = "tmate-ssh-server"; 25 rev = "1f314123df2bb29cb07427ed8663a81c8d9034fd"; 26 sha256 = "sha256-9/xlMvtkNWUBRYYnJx20qEgtEcjagH2NtEKZcDOM1BY="; 27 }; 28 29 dontUseCmakeConfigure = true; 30 31 buildInputs = [ libtool zlib openssl libevent ncurses ruby msgpack libssh ]; 32 nativeBuildInputs = [ autoreconfHook cmake pkg-config ]; 33 34 passthru.tests.tmate-ssh-server = nixosTests.tmate-ssh-server; 35 36 meta = with lib; { 37 homepage = "https://tmate.io/"; 38 description = "tmate SSH Server"; 39 license = licenses.mit; 40 platforms = platforms.unix; 41 maintainers = with maintainers; [ ck3d ]; 42 }; 43}