We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 971ec7e commit ae28af9Copy full SHA for ae28af9
2 files changed
flake.nix
guix.scm
@@ -0,0 +1,12 @@
1
+;; SPDX-License-Identifier: MPL-2.0
2
+;; Copyright (c) 2026 Jonathan D.A. Jewell (hyperpolymath) <j.d.a.jewell@open.ac.uk>
3
+;;
4
+;; Guix development environment for echo-types. Replaces flake.nix (Guix-only policy).
5
+;; Usage: guix shell -D -f guix.scm
6
+(use-modules (guix packages) (guix build-system gnu))
7
+(package
8
+ (name "echo-types") (version "0.1.0") (source #f)
9
+ (build-system gnu-build-system)
10
+ (synopsis "echo-types") (description "echo-types — part of the hyperpolymath ecosystem.")
11
+ (home-page "https://github.com/hyperpolymath/echo-types")
12
+ (license ((@@ (guix licenses) license) "MPL-2.0" "https://github.com/hyperpolymath/palimpsest-license")))
0 commit comments