mirror of
https://github.com/NotAShelf/catApi.git
synced 2025-10-02 23:13:34 +00:00
feat: nix tooling
This commit is contained in:
parent
716b27da8f
commit
5203a18d2d
5 changed files with 79 additions and 1 deletions
15
shell.nix
15
shell.nix
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
callPackage,
|
||||
gopls,
|
||||
go,
|
||||
}: let
|
||||
mainPkg = callPackage ./default.nix {};
|
||||
in
|
||||
mainPkg.overrideAttrs (oa: {
|
||||
nativeBuildInputs =
|
||||
[
|
||||
gopls
|
||||
go
|
||||
]
|
||||
++ (oa.nativeBuildInputs or []);
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue