hiraeth: init at 1.0.1

This commit is contained in:
Lukas Wurzinger 2023-06-06 20:45:23 +02:00
parent e8f5f87454
commit afefa4fba2
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "hiraeth";
version = "1.0.1";
src = fetchFromGitHub {
owner = "lukaswrz";
repo = "hiraeth";
rev = "v${version}";
hash = "sha256-IjHQAJH6Kv65iDkVtJaVeAiMXCEyTTpUTTbW7I2Gxrc=";
};
vendorSha256 = "sha256-tyFAd5S1RUn1AA5DbUGsAuvwtLgOgTE6LUzW3clQE9I=";
meta = {
description = "Share files with an expiration date";
license = lib.licenses.agpl3Plus;
maintainers = [ lib.maintainers.lukaswrz ];
};
}

View File

@ -25529,6 +25529,8 @@ with pkgs;
hiawatha = callPackage ../servers/http/hiawatha { };
hiraeth = callPackage ../servers/hiraeth { };
hoard = callPackage ../tools/misc/hoard { inherit (darwin) Security; };
home-assistant = callPackage ../servers/home-assistant { };