mirror of
https://github.com/acaloiaro/ess
synced 2026-07-21 18:29:08 +00:00
12 lines
354 B
Nix
12 lines
354 B
Nix
{pkgs ? import <nixpkgs> {}, ...}:
|
|
pkgs.buildGoModule {
|
|
pname = "ess";
|
|
version = pkgs.lib.strings.removeSuffix "\n" (builtins.readFile ./version.txt);
|
|
src = ./.;
|
|
vendorHash = null;
|
|
|
|
meta = {
|
|
description = "ess (env-sample-sync): automatically and safely synchronize env.sample files with .env";
|
|
license = pkgs.lib.licenses.bsd2;
|
|
};
|
|
}
|