...
authoralex <[email protected]>
Fri, 28 Oct 2022 23:19:30 +0000 (16:19 -0700)
committeralex <[email protected]>
Fri, 28 Oct 2022 23:19:30 +0000 (16:19 -0700)
guix.scm [new file with mode: 0644]
manifest.scm [deleted file]

diff --git a/guix.scm b/guix.scm
new file mode 100644 (file)
index 0000000..7283fca
--- /dev/null
+++ b/guix.scm
@@ -0,0 +1,26 @@
+(use-modules (guix packages)
+            (guix build-system gnu)
+            (guix git-download)
+            (gnu packages autotools))
+
+(define %source-dir (dirname (current-filename)))
+
+(define seeder
+  (package
+    (name "seeder")
+    (version "git")
+    (source (local-file %source-dir
+                       #:recursive? #t
+                       #:select? (git-predicate %source-dir)))
+    (build-system gnu-build-system)
+    (native-inputs
+      `(("autoconf", autoconf)
+       ("automake", automake)))
+    (inputs
+      `(("libsodium", libsodium)))
+    (home-page "https://git.infiniteadaptability.org/seeder")
+    (synopsis "bittorrent client")
+    (description "v2 bittorrent client")
+    (license public-domain)))
+
+seeder
diff --git a/manifest.scm b/manifest.scm
deleted file mode 100644 (file)
index bf78772..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-(specifications->manifest
-       (list "autoconf"
-             "automake"
-             "libsodium"))