b386c11e78
* guix/import/json.scm (json->code): Do not return package names after package expressions. * doc/package-hello.json: Fix comma errors and use valid greeter URL. Change-Id: Id71924e72f690a9bda5fbfdb65a443029adfd158 Signed-off-by: Ludovic Courtès <ludo@gnu.org>
32 lines
838 B
JSON
32 lines
838 B
JSON
[
|
|
{
|
|
"name": "myhello",
|
|
"version": "2.10",
|
|
"source": "mirror://gnu/hello/hello-2.10.tar.gz",
|
|
"build-system": "gnu",
|
|
"arguments": {
|
|
"tests?": false
|
|
},
|
|
"home-page": "https://www.gnu.org/software/hello/",
|
|
"synopsis": "Hello, GNU world: An example GNU package",
|
|
"description": "GNU Hello prints a greeting.",
|
|
"license": "GPL-3.0+",
|
|
"native-inputs": ["gettext"]
|
|
},
|
|
{
|
|
"name": "greeter",
|
|
"version": "1.0",
|
|
"source": "mirror://gnu/hello/hello-2.10.tar.gz",
|
|
"build-system": "gnu",
|
|
"arguments": {
|
|
"test-target": "foo",
|
|
"parallel-build?": false
|
|
},
|
|
"home-page": "https://example.com/",
|
|
"synopsis": "Greeter using GNU Hello",
|
|
"description": "This is a wrapper around GNU Hello.",
|
|
"license": "GPL-3.0+",
|
|
"inputs": ["myhello", "hello"]
|
|
}
|
|
]
|