package-hello.json 840 B

1234567891011121314151617181920212223242526272829303132
  1. [
  2. {
  3. "name": "myhello",
  4. "version": "2.10",
  5. "source": "mirror://gnu/hello/hello-2.10.tar.gz",
  6. "build-system": "gnu",
  7. "arguments": {
  8. "tests?": false
  9. }
  10. "home-page": "https://www.gnu.org/software/hello/",
  11. "synopsis": "Hello, GNU world: An example GNU package",
  12. "description": "GNU Hello prints a greeting.",
  13. "license": "GPL-3.0+",
  14. "native-inputs": ["gettext"]
  15. },
  16. {
  17. "name": "greeter",
  18. "version": "1.0",
  19. "source": "https://example.com/greeter-1.0.tar.gz",
  20. "build-system": "gnu",
  21. "arguments": {
  22. "test-target": "foo",
  23. "parallel-build?": false,
  24. },
  25. "home-page": "https://example.com/",
  26. "synopsis": "Greeter using GNU Hello",
  27. "description": "This is a wrapper around GNU Hello.",
  28. "license": "GPL-3.0+",
  29. "inputs": ["myhello", "hello"]
  30. }
  31. ]