ess/default.nix
2025-04-08 15:44:01 -06:00

21 lines
552 B
Nix

{
pkgs ? (
let
inherit (builtins) fetchTree fromJSON readFile;
inherit ((fromJSON (readFile ./flake.lock)).nodes) nixpkgs;
in
import (fetchTree nixpkgs.locked) {}
),
buildGoModule ? pkgs.buildGoModule,
}:
buildGoModule {
pname = "ess";
version = "2.14.1";
pwd = ./.;
src = ./.;
vendorHash = "sha256-ooTP3mS7AEzwJm1JKebL0V2lqVge3WnpFZcbr1f/LIg=";
meta = {
description = "ess (env-sample-sync): automatically and safely synchronize env.sample files with .env";
license = pkgs.lib.licenses.bsd2;
};
}