This commit is contained in:
parent
b16e51219a
commit
6691d52fac
1 changed files with 5 additions and 1 deletions
|
@ -53,7 +53,11 @@
|
|||
albatrosProject = (pkgs.buildGoModule rec {
|
||||
pname = "albatros-go-module";
|
||||
version = albaVersion;
|
||||
src = ./.;
|
||||
src = builtins.path {
|
||||
path = ./.;
|
||||
name = "albatros-source";
|
||||
filter = (path: type: type == "directory" || (builtins.match ".*\\.(go|sum|mod)" path) != null);
|
||||
};
|
||||
CGO_ENABLED = 0;
|
||||
vendorSha256 = "sha256-KYjXb882jWLFO6zilQXlrZorL9tw/+6njQNkB6E9Er4=";
|
||||
dontCheck=true;
|
||||
|
|
Loading…
Reference in a new issue