diff options
author | William Carroll <wpcarro@gmail.com> | 2020-02-09T13·47+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-02-10T10·06+0000 |
commit | 64654d1d6d1f36a20e00ee6cdc3866ff009c3a0a (patch) | |
tree | 3a764c88197e704a86ef527467b49a933c9f242d /default.nix | |
parent | ec4c8472ca8eaed9a40d5decf5f909bdda96ec62 (diff) |
Create gopkgs directory for golang libs
- Created a gopkgs directory and registered it with default.nix's readTree - Moved monzo_ynab/utils -> gopkgs - Consumed utils.go in main.go - Renamed monzo_ynab -> job
Diffstat (limited to 'default.nix')
-rw-r--r-- | default.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/default.nix b/default.nix index ff4f40d8f943..74268c803961 100644 --- a/default.nix +++ b/default.nix @@ -20,6 +20,8 @@ let localPkgs = readTree: { blog = readTree ./blog; lisp = readTree ./lisp; + gopkgs = readTree ./gopkgs; + monzo_ynab = readTree ./monzo_ynab; third_party = readTree ./third_party; }; in fix(self: { |