;;; misc.scm --- miscellaneous Guix packages ;;; ;;; Copyright © 2019-2022 Kyle Meyer ;;; ;;; This file is NOT part of GNU Guix. ;;; ;;; This program 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. ;;; ;;; This program 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 this program. If not, see ;;; . (define-module (km-packages misc) #:use-module (gnu packages) #:use-module (gnu packages version-control) #:use-module (guix build-system python) #:use-module (guix download) #:use-module (guix packages) #:use-module (guix utils)) (define-public patatt-latest (package (inherit patatt) (version "0.6.2") (source (origin (method url-fetch) (uri (pypi-uri "patatt" version)) (sha256 (base32 "0sy732xmjvrbdw982c0ffynwhx7515czwjf2vlci1swblpi2m8ar")))))) (define-public b4-latest (package (inherit b4) (version "0.10.1") (source (origin (method url-fetch) (uri (pypi-uri "b4" version)) (sha256 (base32 "0i5lyvz7l0nkrgsqma2qpndwvr52wnq9jm8d3ai3dq5kca79ci6c")))) (propagated-inputs (modify-inputs (package-propagated-inputs b4) (replace "patatt" patatt-latest)))))