20 lines
316 B
Nix
20 lines
316 B
Nix
|
{ pkgs ? (
|
||
|
let
|
||
|
sources = import ./nix/sources.nix;
|
||
|
in
|
||
|
import sources.nixpkgs {
|
||
|
overlays = [
|
||
|
(import "${sources.gomod2nix}/overlay.nix")
|
||
|
];
|
||
|
}
|
||
|
)
|
||
|
}:
|
||
|
|
||
|
pkgs.buildGoApplication {
|
||
|
pname = "testaroo";
|
||
|
version = "0.1";
|
||
|
pwd = ./.;
|
||
|
src = ./.;
|
||
|
modules = ./gomod2nix.toml;
|
||
|
}
|