tinyssh: init at 20210601-unstable (#144029)
Co-authored-by: Dmitry Bogatov <git#v1@kaction.cc> Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
7d341adb8c
commit
361cd4b7de
28
pkgs/tools/networking/tinyssh/default.nix
Normal file
28
pkgs/tools/networking/tinyssh/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ lib, stdenv, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "tinyssh";
|
||||
version = "20210601";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "janmojzis";
|
||||
repo = "tinyssh";
|
||||
rev = version;
|
||||
sha256 = "sha256-+THoPiD6dW5ZuiQmmLckOJGyjhzdF3qF0DgC51zjGY8=";
|
||||
};
|
||||
|
||||
preConfigure = ''
|
||||
echo /bin > conf-bin
|
||||
echo /share/man > conf-man
|
||||
'';
|
||||
|
||||
DESTDIR = placeholder "out";
|
||||
|
||||
meta = with lib; {
|
||||
description = "minimalistic SSH server";
|
||||
homepage = "https://tinyssh.org";
|
||||
license = licenses.publicDomain;
|
||||
platforms = platforms.unix;
|
||||
maintainers = [ maintainers.kaction ];
|
||||
};
|
||||
}
|
@ -8179,6 +8179,8 @@ with pkgs;
|
||||
|
||||
opensm = callPackage ../tools/networking/opensm { };
|
||||
|
||||
tinyssh = callPackage ../tools/networking/tinyssh { };
|
||||
|
||||
opensshPackages = dontRecurseIntoAttrs (callPackage ../tools/networking/openssh {});
|
||||
|
||||
openssh = opensshPackages.openssh.override {
|
||||
|
Loading…
Reference in New Issue
Block a user