From 806a5abe3cfecfe93397a54659c0b90e66538536 Mon Sep 17 00:00:00 2001 From: GTrunSec Date: Tue, 25 Oct 2022 01:01:54 -0700 Subject: [PATCH] add julia to container --- flake.lock | 5 +++++ flake.nix | 3 ++- nix/julia2nix/devshells/default.nix | 7 ------- 3 files changed, 7 insertions(+), 8 deletions(-) diff --git a/flake.lock b/flake.lock index 45863c4..7012283 100644 --- a/flake.lock +++ b/flake.lock @@ -416,6 +416,11 @@ "root": { "inputs": { "cells-lab": "cells-lab", + "n2c": [ + "cells-lab", + "std", + "n2c" + ], "nix-filter": "nix-filter_2", "nixpkgs": "nixpkgs_3", "std": [ diff --git a/flake.nix b/flake.nix index 8ea504c..48fe101 100644 --- a/flake.nix +++ b/flake.nix @@ -7,6 +7,7 @@ inputs = { cells-lab.url = "github:gtrunsec/cells-lab"; std.follows = "cells-lab/std"; + n2c.follows = "cells-lab/std/n2c"; }; outputs = { @@ -39,7 +40,7 @@ (functions "overlays") (functions "compiler") - (data "containerJobs") + (containers "containers") ]; } { diff --git a/nix/julia2nix/devshells/default.nix b/nix/julia2nix/devshells/default.nix index 2142dba..d5e1a80 100644 --- a/nix/julia2nix/devshells/default.nix +++ b/nix/julia2nix/devshells/default.nix @@ -75,12 +75,5 @@ in imports = [ cell.devshellProfiles.update ]; - # github CI issue: nvfetcher encoding problem - env = [ - { - name = "LC_ALL"; - value = "en_US.UTF-8"; - } - ]; }; }