Revise previous opinions about absolute paths GT <bracket-notation>
Unforeseen problem: `buildkite-agent` runs its builds in a separate directory, so if I want the `nix-build` command to build the newly checked out code, I need to set <briefcase> to the CWD.
This commit is contained in:
parent
7833632a79
commit
59f7481411
11 changed files with 12 additions and 21 deletions
|
@ -1,5 +1,6 @@
|
|||
let
|
||||
pkgs = import /home/wpcarro/nixpkgs {};
|
||||
briefcase = import <briefcase> {};
|
||||
pkgs = briefcase.third_party.pkgs;
|
||||
in pkgs.mkShell {
|
||||
buildInputs = with pkgs; [
|
||||
elmPackages.elm
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
let
|
||||
briefcase = import /home/wpcarro/briefcase {};
|
||||
briefcase = import <briefcase> {};
|
||||
in briefcase.buildHaskell.program {
|
||||
name = "server";
|
||||
srcs = builtins.path {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
let
|
||||
briefcase = import /home/wpcarro/briefcase {};
|
||||
briefcase = import <briefcase> {};
|
||||
in briefcase.buildHaskell.shell {
|
||||
deps = hpkgs: with hpkgs; [
|
||||
hspec
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue