mirror of
https://github.com/acaloiaro/ess
synced 2026-07-21 02:09:48 +00:00
fix: overlapping cgo enabled (default.nix)
This commit is contained in:
parent
5427c88915
commit
749d9a5c19
1 changed files with 1 additions and 1 deletions
|
|
@ -4,7 +4,6 @@
|
|||
...
|
||||
}:
|
||||
pkgs.buildGoModule rec {
|
||||
env.CGO_ENABLED = 0;
|
||||
pname = "ess";
|
||||
version = pkgs.lib.strings.removeSuffix "\n" (builtins.readFile ./version.txt);
|
||||
src = ./.;
|
||||
|
|
@ -13,6 +12,7 @@ pkgs.buildGoModule rec {
|
|||
"-X 'main.version=${version}-nix'"
|
||||
"-X 'main.commit=${self.rev or "dev"}'"
|
||||
];
|
||||
CGO_ENABLED = 0;
|
||||
|
||||
meta = {
|
||||
description = "ess (env-sample-sync): automatically and safely synchronize env.sample files with .env";
|
||||
|
|
|
|||
Loading…
Reference in a new issue