ess/default.nix
Juan C. Müller 16eda61926
chore: use version.txt rather than modifying source code on bump
Signed-off-by: Juan C. Müller <me@juancmuller.com>
2025-04-10 21:10:38 -04:00

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;
};
}