Deployment and lifecycle management for Nix
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

test: build cli tests in nix package

+14
+14
nix/packages/cli.nix
··· 40 40 ''; 41 41 42 42 doCheck = true; 43 + checkPhase = '' 44 + runHook preCheck 45 + 46 + export MIX_ENV=test 47 + ln -sv $PWD/_build/prod _build/test 48 + 49 + pushd apps/sower_cli 50 + mix do deps.loadpaths --no-deps-check + test 51 + popd 52 + 53 + export MIX_ENV=prod 54 + 55 + runHook postCheck 56 + ''; 43 57 44 58 meta.mainProgram = "sower"; 45 59 }