diff options
author | Vincent Ambo <mail@tazj.in> | 2021-04-10T11·38+0200 |
---|---|---|
committer | tazjin <mail@tazj.in> | 2021-04-10T12·04+0000 |
commit | f2443911cc730cbdd927a8c8b8e0012659a464ff (patch) | |
tree | ca38f672a760ed806353c2b5b2af88f2b14159fc /fun/gemma | |
parent | 8361b82d0ac59f436f7ecef283077b0f7d689ca1 (diff) |
refactor(fun): Consistent use of depot.third_party vs. pkgs r/2462
In preparation for the solution of b/108, we need to consistently use `depot.third_party` for packages that are only packed in the TVL depot and `pkgs` for things that come from nixpkgs. This commit cleans up a huge chunk of these uses in //fun Change-Id: I45a7b392a9749fa7859ff5100dcea415bda807c3 Reviewed-on: https://cl.tvl.fyi/c/depot/+/2914 Tested-by: BuildkiteCI Reviewed-by: sterni <sternenseemann@systemli.org>
Diffstat (limited to 'fun/gemma')
-rw-r--r-- | fun/gemma/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fun/gemma/default.nix b/fun/gemma/default.nix index dbfaf5effc31..902f5857db42 100644 --- a/fun/gemma/default.nix +++ b/fun/gemma/default.nix @@ -2,7 +2,7 @@ let inherit (pkgs) cacert iana-etc libredirect stdenv runCommandNoCC writeText; - elmPackages = pkgs.elmPackages_0_18; + elmPackages = depot.third_party.elmPackages_0_18; frontend = stdenv.mkDerivation { name = "gemma-frontend.html"; @@ -36,7 +36,7 @@ let in depot.nix.buildLisp.program { name = "gemma"; - deps = with pkgs.lisp; [ + deps = with depot.third_party.lisp; [ cl-json cl-prevalence hunchentoot |