##// END OF EJS Templates
release: disable check phase for building installation
marcink -
r2956:63ee4af1 default
parent child Browse files
Show More
@@ -1,7 +1,7 b''
1 # This file defines how to "build" for packaging.
1 # This file defines how to "build" for packaging.
2
2
3 { pkgs ? import <nixpkgs> {}
3 { pkgs ? import <nixpkgs> {}
4 , doCheck ? true
4 , doCheck ? false
5 }:
5 }:
6
6
7 let
7 let
@@ -9,6 +9,11 b' let'
9 inherit
9 inherit
10 doCheck
10 doCheck
11 pkgs;
11 pkgs;
12
13 # disable checkPhase for build
14 checkPhase = ''
15 '';
16
12 };
17 };
13
18
14 in {
19 in {
General Comments 0
You need to be logged in to leave comments. Login now