aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/nickle.scm
diff options
context:
space:
mode:
authorIan Eure <ian@retrospec.tv>2024-01-13 16:40:18 -0800
committerMathieu Othacehe <othacehe@gnu.org>2024-01-17 11:18:00 +0100
commitb3e0a973bca6fe5de7356f3d70c4b7d468b0a759 (patch)
tree7bdfb52193a7c9229fd972a9779b800779bfc31c /gnu/packages/nickle.scm
parent8fbda358abd079e32f8a7a72403484bce3a6c3e7 (diff)
downloadguix-b3e0a973bca6fe5de7356f3d70c4b7d468b0a759.tar.gz
guix-b3e0a973bca6fe5de7356f3d70c4b7d468b0a759.zip
gnu: powertop: Correct package description.
* gnu/packages/linux.scm (powertop): Correct package description. Change-Id: Ifc81ed62158df8b3c235d335731590e977dcc725 Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
Diffstat (limited to 'gnu/packages/nickle.scm')
0 files changed, 0 insertions, 0 deletions
#:use-module (guix base32) #:use-module (gcrypt hash) #:use-module (guix tests http) #:use-module (guix grafts) #:use-module (srfi srfi-64) #:use-module (web client) #:use-module (ice-9 match)) ;; Globally disable grafts because they can trigger early builds. (%graft? #f) (define test-json "{ \"packages\": { \"foo/bar\": { \"0.1\": { \"name\": \"foo/bar\", \"description\": \"description\", \"keywords\": [\"testing\"], \"homepage\": \"http://example.com\", \"version\": \"0.1\", \"license\": [\"BSD-3-Clause\"], \"source\": { \"type\": \"url\", \"url\": \"http://example.com/Bar-0.1.tar.gz\" }, \"require\": {}, \"require-dev\": {\"phpunit/phpunit\": \"1.0.0\"} } } } }") (define test-source "foobar") (test-begin "composer") (test-assert "composer->guix-package" ;; Replace network resources with sample data. (with-http-server `((200 ,test-json) (200 ,test-source)) (parameterize ((%composer-base-url (%local-url)) (current-http-proxy (%local-url))) (match (composer->guix-package "foo/bar") (`(package (name "php-foo-bar") (version "0.1") (source (origin (method url-fetch) (uri "http://example.com/Bar-0.1.tar.gz") (sha256 (base32 ,(? string? hash))))) (build-system composer-build-system) (native-inputs (list php-phpunit-phpunit)) (synopsis "") (description "description") (home-page "http://example.com") (license license:bsd-3)) (string=? (bytevector->nix-base32-string (call-with-input-string test-source port-sha256)) hash)) (x (pk 'fail x #f)))))) (test-end "composer")