From 76cf67d30ab916cd1da9399789621ade6d1151c4 Mon Sep 17 00:00:00 2001 From: Lilah Tascheter Date: Mon, 3 Nov 2025 16:55:08 -0600 Subject: [PATCH] gnu: hare-xyz: Add hare-ssh. * gnu/packages/hare-xyz.scm: New file... * gnu/local.mk (GNU_SYSTEM_MODULES): ...and add it. Change-Id: I4a452368fba29375159bdb7ce667a3cfe66872df Signed-off-by: jgart --- gnu/local.mk | 1 + gnu/packages/hare-xyz.scm | 49 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 50 insertions(+) create mode 100644 gnu/packages/hare-xyz.scm diff --git a/gnu/local.mk b/gnu/local.mk index f110841381f2b15fd8f3c660f157d40431c799fe..cf4d8c407ba9a67a4bc59eb55b00fd5d95ec92c9 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -356,6 +356,7 @@ GNU_SYSTEM_MODULES = \ %D%/packages/gxmessage.scm \ %D%/packages/hardware.scm \ %D%/packages/hare.scm \ + %D%/packages/hare-xyz.scm \ %D%/packages/haskell.scm \ %D%/packages/haskell-apps.scm \ %D%/packages/haskell-check.scm \ diff --git a/gnu/packages/hare-xyz.scm b/gnu/packages/hare-xyz.scm new file mode 100644 index 0000000000000000000000000000000000000000..3de3abe190522653aba250a2f1aa72eaca523471 --- /dev/null +++ b/gnu/packages/hare-xyz.scm @@ -0,0 +1,49 @@ +;;; GNU Guix --- Functional package management for GNU +;;; Copyright © 2025 Lilah Tascheter +;;; +;;; This file is part of GNU Guix. +;;; +;;; GNU Guix is free software; you can redistribute it and/or modify it +;;; under the terms of the GNU General Public License as published by +;;; the Free Software Foundation; either version 3 of the License, or (at +;;; your option) any later version. +;;; +;;; GNU Guix is distributed in the hope that it will be useful, but +;;; WITHOUT ANY WARRANTY; without even the implied warranty of +;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;;; GNU General Public License for more details. +;;; +;;; You should have received a copy of the GNU General Public License +;;; along with GNU Guix. If not, see . + +(define-module (gnu packages hare-xyz) + #:use-module (gnu packages glib) + #:use-module (gnu packages gnome) + #:use-module (gnu packages gtk) + #:use-module (guix build-system hare) + #:use-module (guix download) + #:use-module (guix gexp) + #:use-module (guix git-download) + #:use-module ((guix licenses) #:prefix license:) + #:use-module (guix packages)) + +(define-public hare-ssh + (package + (name "hare-ssh") + (version "0.25.2") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://git.sr.ht/~sircmpwn/hare-ssh") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1293xpyl3masbwq6qsamiqpbv241fkc622bdsa7vcb5q89if8hgn")))) + (build-system hare-build-system) + (supported-systems %hare-supported-systems) + (home-page "https://sr.ht/~sircmpwn/hare-ssh") + (synopsis "SSH library for Hare") + (description "This package is an implementation of the SSH client, server, +and agent protocols in pure Hare.") + (license license:mpl2.0)))