aboutsummaryrefslogtreecommitdiff
path: root/km-packages/misc.scm
blob: f6258471e35303a2b1e2a745ea71fef76a99aa7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
;;; misc.scm --- miscellaneous Guix packages
;;;
;;; Copyright © 2019-2022 Kyle Meyer <kyle@kyleam.com>
;;;
;;; 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
;;; <https://www.gnu.org/licenses/>.

(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)))))