aboutsummaryrefslogtreecommitdiff
path: root/gnu/system
diff options
context:
space:
mode:
authorPeter Polidoro <peter@polidoro.io>2022-04-06 15:21:14 -0400
committerLudovic Courtès <ludo@gnu.org>2022-04-29 18:07:17 +0200
commit1bb177d08401feb4370d6422f2c6fc746adc7c2a (patch)
tree6d09782b5a5c75a4b5470dc538043e465eb9bfa1 /gnu/system
parent6ce8d9be438f9d16338232ebf03a4f749cc1ff4f (diff)
downloadguix-1bb177d08401feb4370d6422f2c6fc746adc7c2a.tar.gz
guix-1bb177d08401feb4370d6422f2c6fc746adc7c2a.zip
gnu: Add python-flatten-json.
* gnu/packages/python-xyz.scm (python-flatten-json): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/system')
0 files changed, 0 insertions, 0 deletions
) (expose-internal-definitions machine-matches? build-requirements-system build-requirements-features build-machine-system build-machine-systems %build-machine-system %build-machine-systems build-machine-features) (define (deprecated-build-machine system) (build-machine (name "m1") (user "dummy") (host-key "some-key") (system system))) (define (new-build-machine systems) (build-machine (name "m1") (user "dummy") (host-key "some-key") (systems systems))) ;;; Test that deprecated build-machine definitions still work. (test-assert (machine-matches? (deprecated-build-machine "i686-linux") (build-requirements (system "i686-linux")))) (test-assert (machine-matches? (new-build-machine '("i686-linux")) (build-requirements (system "i686-linux")))) ;;; A build machine can act as more than one system type, thanks to QEMU ;;; emulation. (test-assert (machine-matches? (new-build-machine '("armhf-linux" "aarch64-linux" "i686-linux" "x86_64-linux")) (build-requirements (system "armhf-linux"))))