mirror of
https://github.com/acaloiaro/ess
synced 2026-07-21 10:12:19 +00:00
chore: delete shell.nix (vestige of gomod2nix)
Signed-off-by: Juan C. Müller <me@juancmuller.com>
This commit is contained in:
parent
ee34b81aca
commit
c359037d18
1 changed files with 0 additions and 24 deletions
24
shell.nix
24
shell.nix
|
|
@ -1,24 +0,0 @@
|
|||
{ pkgs ? (
|
||||
let
|
||||
inherit (builtins) fetchTree fromJSON readFile;
|
||||
inherit ((fromJSON (readFile ./flake.lock)).nodes) nixpkgs gomod2nix;
|
||||
in
|
||||
import (fetchTree nixpkgs.locked) {
|
||||
overlays = [
|
||||
(import "${fetchTree gomod2nix.locked}/overlay.nix")
|
||||
];
|
||||
}
|
||||
)
|
||||
, mkGoEnv ? pkgs.mkGoEnv
|
||||
, gomod2nix ? pkgs.gomod2nix
|
||||
}:
|
||||
|
||||
let
|
||||
goEnv = mkGoEnv { pwd = ./.; };
|
||||
in
|
||||
pkgs.mkShell {
|
||||
packages = [
|
||||
goEnv
|
||||
gomod2nix
|
||||
];
|
||||
}
|
||||
Loading…
Reference in a new issue