mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-20 11:05:14 +00:00
hiraeth: init at 1.0.1
This commit is contained in:
parent
e8f5f87454
commit
afefa4fba2
24
pkgs/servers/hiraeth/default.nix
Normal file
24
pkgs/servers/hiraeth/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user