mirror of
https://github.com/tweag/gomod2nix.git
synced 2024-11-09 12:09:08 +00:00
18 lines
310 B
Nix
18 lines
310 B
Nix
|
let
|
||
|
pkgs = import <nixpkgs> {
|
||
|
overlays = [
|
||
|
(self: super: {
|
||
|
buildGoApplication = super.callPackage ./builder { };
|
||
|
})
|
||
|
];
|
||
|
};
|
||
|
|
||
|
inherit (pkgs) lib;
|
||
|
|
||
|
in pkgs.buildGoApplication {
|
||
|
pname = "gomod2nix";
|
||
|
version = "0.1";
|
||
|
src = lib.cleanSource ./.;
|
||
|
modules = ./gomod2nix.toml;
|
||
|
}
|