~ruther/guix-local

48da001fd96bb9ff063b512666f5122b83bc210d — Ludovic Courtès 13 years ago d6ed71c
release.nix: Change `distro.hello' to produce something.

* release.nix (distro.hello)[buildPhase]: Tee the log to $out.  Add a
  `name' attribute; remove `buildInputs' and instead use the full path
  to `guix-build'.
1 files changed, 2 insertions(+), 2 deletions(-)

M release.nix
M release.nix => release.nix +2 -2
@@ 103,9 103,9 @@ let
          # from the .drv, and importing that.
          pkgs.releaseTools.nixBuild {
            src = null;
            name = "guix-hello";
            phases = "buildPhase";
            buildInputs = [ guix ];
            buildPhase = "guix-build hello";
            buildPhase = "${guix}/bin/guix-build hello | tee $out";
            __noChroot = true;
          };
    };