# -*- mode: snippet -*- # name: guix-package # key: package... # -- (define-public $1 (package (name "$1") (version "$2") (source origin...$0) (build-system ${3:$$(yas-choose-value "android-ndk-build-system" "ant-build-system" "asdf-build-system" "cargo-build-system" "clojure-build-system" "cmake-build-system" "copy-build-system" "dub-build-system" "dune-build-system" "emacs-build-system" "font-build-system" "glib-or-gtk-build-system" "gnu-build-system" "go-build-system" "guile-build-system" "haskell-build-system" "julia-build-system" "linux-module-build-system" "maven-build-system" "meson-build-system" "minify-build-system" "node-build-system" "ocaml-build-system" "perl-build-system" "python-build-system" "qt-build-system" "r-build-system" "rakudo-build-system" "ruby-build-system" "scons-build-system" "texlive-build-system" "trivial-build-system" "waf-build-system")}) (home-page "$4") (synopsis "$5") (description "$6") (license $7)))able class='list nowrap'>AgeCommit message (Expand)Author 2020-09-28tests: Simplify shell exit status negation;...* tests/guix-archive.sh, tests/guix-build-branch.sh, tests/guix-build.sh, tests/guix-daemon.sh, tests/guix-download.sh, tests/guix-environment.sh, tests/guix-gc.sh, tests/guix-git-authenticate.sh, tests/guix-graph.sh, tests/guix-hash.sh, tests/guix-lint.sh, tests/guix-pack-relocatable.sh, tests/guix-pack.sh, tests/guix-package-aliases.sh, tests/guix-package-net.sh, tests/guix-package.sh: Use the shell '!' keyword to negate command exit status in place of 'if ...; then false; else true; fi' Eric Bavier 2020-05-11guix graph: Add '--path'....* guix/scripts/graph.scm (display-path): New procedure. (%options, show-help): Add '--path'. (guix-graph): Handle it. * tests/guix-graph.sh: Add tests. * doc/guix.texi (Invoking guix graph): Document it. (Invoking guix size): Mention it. Ludovic Courtès 2020-01-16graph: Add '--load-path' option....* guix/scripts/graph.scm (%option): Add '--load-path' option. * doc/guix.texi: Document it. * tests/guix-graph.sh: Test it. Pierre Neidhardt 2019-11-07graph: Support package transformation options....* guix/scripts/graph.scm (%options): Append %TRANSFORMATION-OPTIONS. (show-help): Call 'show-transformation-options-help'. (guix-graph): Call 'options->transformation' and use it. * tests/guix-graph.sh: Add test. * doc/guix.texi (Invoking guix graph): Document it. Ludovic Courtès