Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

hiraeth: init at 1.0.1

+26
+24
pkgs/servers/hiraeth/default.nix
··· 1 + { 2 + lib, 3 + buildGoModule, 4 + fetchFromGitHub, 5 + }: 6 + buildGoModule rec { 7 + pname = "hiraeth"; 8 + version = "1.0.1"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "lukaswrz"; 12 + repo = "hiraeth"; 13 + rev = "v${version}"; 14 + hash = "sha256-IjHQAJH6Kv65iDkVtJaVeAiMXCEyTTpUTTbW7I2Gxrc="; 15 + }; 16 + 17 + vendorSha256 = "sha256-tyFAd5S1RUn1AA5DbUGsAuvwtLgOgTE6LUzW3clQE9I="; 18 + 19 + meta = { 20 + description = "Share files with an expiration date"; 21 + license = lib.licenses.agpl3Plus; 22 + maintainers = [ lib.maintainers.lukaswrz ]; 23 + }; 24 + }
+2
pkgs/top-level/all-packages.nix
··· 25529 25529 25530 25530 hiawatha = callPackage ../servers/http/hiawatha { }; 25531 25531 25532 + hiraeth = callPackage ../servers/hiraeth { }; 25533 + 25532 25534 hoard = callPackage ../tools/misc/hoard { inherit (darwin) Security; }; 25533 25535 25534 25536 home-assistant = callPackage ../servers/home-assistant { };