This commit is contained in:
icefox 2025-12-26 12:08:19 -03:00
parent 38a5c47dab
commit af358f9326
No known key found for this signature in database
5 changed files with 116 additions and 3 deletions

18
default.nix Normal file
View file

@ -0,0 +1,18 @@
{ 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 = [ ];
};
}