(use-modules (guix) (guix build-system gnu) (guix licenses)) (package (name "hello") (version "2.10") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/hello/hello-" version ".tar.gz")) (sha256 (base32 "0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i")))) (build-system gnu-build-system) (synopsis "Hello, GNU world: An example GNU package") (description "Guess what GNU Hello prints!") (home-page "http://www.gnu.org/software/hello/") (license gpl3+)) t'> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/tests/pki.scm
)
AgeCommit message (Expand)Author
Author
2021-09-15import: cabal: Treat identifier names correctly....Xinglu Chen
2021-06-25import: hackage: Support "common" field and imports...Philip Munksgaard
2021-05-22import: hackage: Prefix licenses with 'license:'....Xinglu Chen
2019-06-20import: hackage: Add two expected failing test cases....Robert Vollmert
2019-06-13import: hackage: Handle Hackage revisions....Robert Vollmert
2019-06-02import: hackage: Parse braced properties....Robert Vollmert
2019-06-02tests: hackage: Test multiline cabal description....Robert Vollmert
2019-06-02tests: Fix hackage tests....Robert Vollmert
2019-06-01tests: Indent hackage tests...Robert Vollmert
2019-06-01tests: hackage: Don't mock hackage-fetch....Robert Vollmert
2019-06-01tests: hackage: Factor out package pattern....Robert Vollmert
2019-05-26import: hackage: Fix Cabal test....Ludovic Courtès