mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 00:53:12 +03:00
Merge pull request #235790 from lukaswrz/hiraeth
hiraeth: init at 1.0.1
This commit is contained in:
commit
8c23e9bb6f
@ -9469,6 +9469,12 @@
|
||||
fingerprint = "97A0 AE5E 03F3 499B 7D7A 65C6 76A4 1432 37EF 5817";
|
||||
}];
|
||||
};
|
||||
lukaswrz = {
|
||||
email = "lukas@wrz.one";
|
||||
github = "lukaswrz";
|
||||
githubId = 84395723;
|
||||
name = "Lukas Wurzinger";
|
||||
};
|
||||
lukeadams = {
|
||||
email = "luke.adams@belljar.io";
|
||||
github = "lukeadams";
|
||||
|
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 ];
|
||||
};
|
||||
}
|
@ -25564,6 +25564,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