2024-05-23 23:07:07 +00:00
|
|
|
{
|
|
|
|
fetchFromSourcehut,
|
2024-05-23 23:07:53 +00:00
|
|
|
hareHook,
|
2024-05-23 23:07:07 +00:00
|
|
|
lib,
|
|
|
|
stdenv,
|
|
|
|
}:
|
2024-01-01 09:00:31 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
|
|
pname = "hare-ssh";
|
2024-05-23 23:07:07 +00:00
|
|
|
version = "0-unstable-2023-11-16";
|
2024-01-01 09:00:31 +00:00
|
|
|
|
|
|
|
src = fetchFromSourcehut {
|
|
|
|
owner = "~sircmpwn";
|
|
|
|
repo = "hare-ssh";
|
|
|
|
rev = "c6a39e37ba4a42721594e0a907fe016f8e2198a8";
|
|
|
|
hash = "sha256-I43TLPoImBsvkgV3hDy9dw0pXVt4ezINnxFtEV9P2/M=";
|
|
|
|
};
|
|
|
|
|
2024-05-23 23:07:53 +00:00
|
|
|
nativeBuildInputs = [ hareHook ];
|
2024-01-01 09:00:31 +00:00
|
|
|
|
2024-05-23 23:07:53 +00:00
|
|
|
makeFlags = [ "PREFIX=${builtins.placeholder "out"}" ];
|
2024-01-01 09:00:31 +00:00
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://git.sr.ht/~sircmpwn/hare-ssh/";
|
|
|
|
description = "SSH client & server protocol implementation for Hare";
|
|
|
|
license = with licenses; [ mpl20 ];
|
|
|
|
maintainers = with maintainers; [ patwid ];
|
|
|
|
|
2024-05-23 23:07:53 +00:00
|
|
|
inherit (hareHook.meta) platforms badPlatforms;
|
2024-01-01 09:00:31 +00:00
|
|
|
};
|
|
|
|
})
|