mirror of
https://github.com/tweag/gomod2nix.git
synced 2024-11-04 17:49:08 +00:00
cf42f710c1
As creator of small tools, my flakes might often end up in other peoples projects. Overlays are a performance problem in those use cases because I would kept re-instantiating nixpkgs instances. Of course I could also expose my stuff as overlays as well. In that case I would need to merge downstream dependencies like go2modnix as well, which would polute their nixpkgs instance with unrelated stuff and also make it harder for my users to tell what random attributes came from which place.
23 lines
476 B
Nix
23 lines
476 B
Nix
{ pkgs ? (
|
|
let
|
|
inherit (builtins) fetchTree fromJSON readFile;
|
|
in
|
|
import (fetchTree (fromJSON (readFile ./flake.lock)).nodes.nixpkgs.locked) {
|
|
overlays = [
|
|
(import ./overlay.nix)
|
|
];
|
|
}
|
|
)
|
|
, gomod2nix ? pkgs.gomod2nix
|
|
, mkGoEnv ? pkgs.mkGoEnv
|
|
}:
|
|
|
|
pkgs.mkShell {
|
|
NIX_PATH = "nixpkgs=${builtins.toString pkgs.path}";
|
|
nativeBuildInputs = [
|
|
pkgs.nixpkgs-fmt
|
|
pkgs.golangci-lint
|
|
gomod2nix
|
|
(mkGoEnv { pwd = ./.; })
|
|
];
|
|
}
|