henna/default.nix
2025-12-26 12:08:19 -03:00

18 lines
259 B
Nix

{ lib, buildGoModule }:
buildGoModule {
pname = "henna";
version = "0.1.0";
src = ./.;
vendorHash = null;
CGO_ENABLED = 1;
meta = with lib; {
description = "Henna gallery server";
license = licenses.mit;
maintainers = [ ];
};
}