release: disable check phase for building installation

This commit is contained in:
Marcin Kuzminski 2018-08-12 11:10:14 +02:00
parent 9effaef334
commit cba3c6089c

View file

@ -1,7 +1,7 @@
# This file defines how to "build" for packaging.
{ pkgs ? import <nixpkgs> {}
, doCheck ? true
, doCheck ? false
}:
let
@ -9,6 +9,11 @@ let
inherit
doCheck
pkgs;
# disable checkPhase for build
checkPhase = ''
'';
};
in {