;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2022 pukkamustard ;;; ;;; 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 pikchr) #:use-module (guix packages) #:use-module (guix build-system gnu) #:use-module (guix download) #:use-module ((guix licenses) #:prefix license:)) (define-public pikchr (let ((commit "221988914eff6efe") (revision "0")) ;increment for each new snapshot (package (name "pikchr") ;; To update, use the last check-in in https://pikchr.org/home/timeline?r=trunk (version (string-append revision "-" (string-take commit 5))) (source (origin (method url-fetch) (uri (string-append "https://pikchr.org/home/tarball/" commit "/pikchr.tar.gz")) (file-name (string-append "pikchr-" version ".tar.gz")) (sha256 (base32 "0yclkincsgfni4scjzp5avdsij8vmyxjn0q2qkwjhn3p43y8nxzd")))) (build-system gnu-build-system) (arguments '(#:tests? #f ;no tests #:phases (modify-phases %standard-phases (delete 'bootstrap) (delete 'configure) (replace 'install (lambda* (#:key outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) (bin (string-append out "/bin"))) (install-file "pikchr" bin))))))) (home-page "https://pikchr.org") (synopsis "Markup language for diagrams in technical documentation") (description "Pikchr (pronounced @emph{picture}) is a PIC-like markup language for diagrams in technical documentation. Pikchr is designed to be embedded in fenced code blocks of Markdown or similar mechanisms of other documentation markup languages.") (license license:bsd-0)))) ='left'>Commit message (Expand)Author 2024-12-06gnu: Update otpclient to 4.0.2...Requires updating `libcotp` to 3.1.0, that introduced a new way for testing that requires `criterium`, a package we don't have and that has dependencies that we don't have either. As the tests in `libcotp` are not an exhaustive testsuite and `otpclient` is its only dependent package, tests are disabled for the moment. * gnu/packages/authentication.scm (libcotp): Update to 3.1.0 [arguments] Disable tests. * gnu/packages/password-utils.scm (otpclient): Update to 4.0.2 Change-Id: Ie6d37b5efe59397d4979c7490b94f1c871c27d6d Ekaitz Zarraga 2024-09-26gnu: pass-age: Update shell completion directories....* gnu/packages/password-utils.scm (pass-age)[arguments]: Adjust the install-plan to adjust the shell completion directories. Change-Id: I5153dd4c9e88d05c22f4ddda135704a7bfe3cc81 Efraim Flashner 2024-09-12gnu: pass-age: Wrap with coreutils-minimal....* gnu/packages/password-utils.scm (pass-age): [arguments]<#:phases>: Add coreutils-minimal bin path to PATH. [inputs]: Replace git by git-minimal. Add coreutils-minimal. Change-Id: I320adc9f412aa493a3bc83298f5d7ebe3d589458 Signed-off-by: Ludovic Courtès <ludo@gnu.org> Nicolas Graves 2024-08-31gnu: otpclient: Fix build....* gnu/packages/password-utils.scm (otpclient)[arguments]: Don't refer to nonexistent 'wrap' phase. Change-Id: I05d6face0809343247d332c042ce9f6bc69e0e78 宋文武 2024-08-31gnu: makepasswd: Add libxcrypt dependency....* gnu/packages/password-utils.scm (makepasswd)[inputs]: Add libxcrypt. Change-Id: I4296a814148b42032c8f66449ea945a37bc768de 宋文武 2024-08-31gnu: passwdqc: Add libxcrypt dependency....* gnu/packages/password-utils.scm (passwdqc)[inputs]: Add libxcrypt. Change-Id: I71e7261170cc433952bcaa0a4a1bdda95cd94d65 宋文武 2024-08-31gnu: password-utils: Add 'bash' input for 'wrap-program'....It is required for cross-compilation. * gnu/packages/password-utils.scm (shroud)[inputs]: Likewise. (assword)[inputs]: Likewise. (password-store)[inputs]: Likewise. (pass-age)[inputs]: Likewise. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Change-Id: I6400ef2a53f9ffe7c5e6690069f58e6a54bf3af6 Maxime Devos 2024-07-23gnu: keepassxc: Update to 2.7.9....* gnu/packages/password-utils.scm (keepassxc): Update to 2.7.9. Change-Id: Ifcdfa5b58e4d7407c270bfa715fb94019015c089 Nicolas Goaziou