From 7ff1b0a37c07419229870c1cf796b8378e8510c4 Mon Sep 17 00:00:00 2001 From: Pierre Neidhardt Date: Fri, 28 Jul 2023 13:02:58 +0200 Subject: gnu: Add cl-transmission. * gnu/packages/lisp-xyz.scm (cl-transmission, ecl-transmission, sbcl-transmission): New variables. --- gnu/packages/lisp-xyz.scm | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) (limited to 'gnu') diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index 05a9e8878c..d2596ebc2d 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -16929,6 +16929,41 @@ from Common Lisp. It provides a progress bar.") (define-public ecl-trivial-download (sbcl-package->ecl-package sbcl-trivial-download)) +(define-public sbcl-transmission + (let ((commit "4bbf1d2761bfa5dfa79b7bc12c3238089b994d95")) + (package + (name "sbcl-transmission") + (version (git-version "0.1" "1" commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/libre-man/cl-transmission/") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0sg3f2jqs2z3mvscjhc43hkd34vlcc4c8hq8rhh5w1gjg19z57hb")))) + (build-system asdf-build-system/sbcl) + (arguments + '(#:asd-systems '("cl-transmission"))) + (inputs + (list sbcl-cl-ppcre sbcl-jonathan sbcl-named-readtables sbcl-rutils + sbcl-drakma)) + (native-inputs + (list sbcl-prove)) + (home-page "https://github.com/libre-man/cl-transmission/") + (synopsis "Common Lisp interface with Transmission using its RPC") + (description + "@code{cl-transmission} is a library to interface with the Transmission +torrent client using its RPC (remote procedure call).") + (license license:expat)))) + +(define-public cl-transmission + (sbcl-package->cl-source-package sbcl-transmission)) + +(define-public ecl-transmission + (sbcl-package->ecl-package sbcl-transmission)) + (define-public sbcl-gtwiwtg (package (name "sbcl-gtwiwtg") -- cgit v1.2.3 ='/guix/log/?id=f0adb870ac0ea70bf6fb7a68f8782833017342cd'>root/gnu/build/image.scm
AgeCommit message (Expand)Author
2021-08-15Update copyright/name notices for Christine Lemmer-Webber....Christopher Lemmer Webber
2021-04-21image: Fix spelling of "evaluate"...Vagrant Cascadian
2020-12-15database: Remove #:deduplicate? from 'register-items'....Ludovic Courtès
2020-12-15image: 'register-closure' leaves it up to the caller to deduplicate....Ludovic Courtès
2020-12-15store-copy: 'populate-store' can optionally deduplicate files....Ludovic Courtès
2020-12-15database: Remove #:reset-timestamps? from 'register-items'....Ludovic Courtès
2020-12-15image: 'register-closure' assumes already-reset timestamps....Ludovic Courtès
2020-12-15store-copy: 'populate-store' resets timestamps....Ludovic Courtès
2020-11-05image: Error out when passed an unsupported partition type....Ludovic Courtès
2020-09-29image: Add support for compressed-qcow2 format....Mathieu Othacehe
2020-07-11image: Do not set journal_model=WAL for the Hurd....Jan (janneke) Nieuwenhuizen
2020-06-22system: image: Remove "image-root" when building raw disk-images....Mathieu Othacehe
2020-06-18database: 'register-items' takes an open database....Ludovic Courtès
2020-06-09build: image: Do not call make-essential-device-nodes by default....Mathieu Othacehe
2020-06-08image: Add Hurd support....Mathieu Othacehe
2020-05-29build: image: Fix initialize-efi-partition docstring....Mathieu Othacehe
2020-05-29image: Use grub-efi to install the EFI bootloader....Mathieu Othacehe
2020-05-29image: Add bootloader installation support....Mathieu Othacehe
2020-05-26image: Add partition file-system options support....Mathieu Othacehe
2020-05-26build: image: Add support for EXT2 and EXT3 file-systems....Mathieu Othacehe
2020-05-05image: Add a new API....Mathieu Othacehe