https://git.savannah.gnu.org/git/guix.git
Revision 8d84a9ee7118d394a7d023155d0f54947a8b780f authored by Mathieu Othacehe on 14 June 2021, 08:13:40 UTC, committed by Mathieu Othacehe on 14 June 2021, 08:13:40 UTC
* gnu/ci.scm: Add missing include.
1 parent c13ad2b
Raw File
Tip revision: 8d84a9ee7118d394a7d023155d0f54947a8b780f authored by Mathieu Othacehe on 14 June 2021, 08:13:40 UTC
ci: Add missing include.
Tip revision: 8d84a9e
package-hello.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": "https://example.com/greeter-1.0.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"]
  }
]
back to top