From 6e50b4532ca312322b9bff57c3687d33acd2f2e1 Mon Sep 17 00:00:00 2001 From: Peter Simons <simons@cryp.to> Date: Fri, 21 Apr 2017 10:05:54 +0200 Subject: [PATCH] halvm: mark build as broken The build relies on /usr/bin/env, which does not exist in chroot build environments: http://hydra.nixos.org/build/51814615. Ping: @dmjio --- pkgs/development/compilers/halvm/2.4.0.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/compilers/halvm/2.4.0.nix b/pkgs/development/compilers/halvm/2.4.0.nix index c42ca4edb4a..740752e1584 100644 --- a/pkgs/development/compilers/halvm/2.4.0.nix +++ b/pkgs/development/compilers/halvm/2.4.0.nix @@ -45,5 +45,6 @@ stdenv.mkDerivation rec { description = "The Haskell Lightweight Virtual Machine (HaLVM): GHC running on Xen"; maintainers = with stdenv.lib.maintainers; [ dmjio ]; inherit (bootPkgs.ghc.meta) license platforms; + broken = true; # http://hydra.nixos.org/build/51814615 }; }