mirror of
https://github.com/tweag/gomod2nix.git
synced 2024-11-05 01:59:08 +00:00
20 lines
421 B
Nix
20 lines
421 B
Nix
{ 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")
|
|
];
|
|
}
|
|
)
|
|
}:
|
|
|
|
pkgs.buildGoApplication {
|
|
pname = "myapp";
|
|
version = "0.1";
|
|
pwd = ./.;
|
|
src = ./.;
|
|
modules = ./gomod2nix.toml;
|
|
}
|