diff options
author | Vincent Ambo <tazjin@google.com> | 2019-12-09T02·40+0000 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2019-12-09T02·40+0000 |
commit | 01bad09eedc97c1437b5bbe4910f6b3b13b23ca0 (patch) | |
tree | 212cf4c82edfda475bba67bafbd4e793c28e24eb /third_party | |
parent | 688233acac967178588943061992455b91cbda03 (diff) |
refactor: Introduce new layout with nixpkgs in third_party r/100
This is not the final layout yet, but makes it so that my top-level attribute set is no longer overlaid into nixpkgs itself. This is useful for other people who are importing my monorepo.
Diffstat (limited to 'third_party')
-rw-r--r-- | third_party/naersk.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/naersk.nix b/third_party/naersk.nix index c12c1abbbfa0..0e708a5781e0 100644 --- a/third_party/naersk.nix +++ b/third_party/naersk.nix @@ -1,6 +1,6 @@ { pkgs, ... }: -let inherit (pkgs) callPackage fetchFromGitHub; +let inherit (pkgs.third_party.nixpkgs) callPackage fetchFromGitHub; in callPackage (fetchFromGitHub { owner = "nmattia"; repo = "naersk"; |