tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
hiraeth: init at 1.0.1
Lukas Wurzinger
2 years ago
afefa4fb
e8f5f874
+26
2 changed files
expand all
collapse all
unified
split
pkgs
servers
hiraeth
default.nix
top-level
all-packages.nix
+24
pkgs/servers/hiraeth/default.nix
···
1
1
+
{
2
2
+
lib,
3
3
+
buildGoModule,
4
4
+
fetchFromGitHub,
5
5
+
}:
6
6
+
buildGoModule rec {
7
7
+
pname = "hiraeth";
8
8
+
version = "1.0.1";
9
9
+
10
10
+
src = fetchFromGitHub {
11
11
+
owner = "lukaswrz";
12
12
+
repo = "hiraeth";
13
13
+
rev = "v${version}";
14
14
+
hash = "sha256-IjHQAJH6Kv65iDkVtJaVeAiMXCEyTTpUTTbW7I2Gxrc=";
15
15
+
};
16
16
+
17
17
+
vendorSha256 = "sha256-tyFAd5S1RUn1AA5DbUGsAuvwtLgOgTE6LUzW3clQE9I=";
18
18
+
19
19
+
meta = {
20
20
+
description = "Share files with an expiration date";
21
21
+
license = lib.licenses.agpl3Plus;
22
22
+
maintainers = [ lib.maintainers.lukaswrz ];
23
23
+
};
24
24
+
}
+2
pkgs/top-level/all-packages.nix
···
25529
25529
25530
25530
hiawatha = callPackage ../servers/http/hiawatha { };
25531
25531
25532
25532
+
hiraeth = callPackage ../servers/hiraeth { };
25533
25533
+
25532
25534
hoard = callPackage ../tools/misc/hoard { inherit (darwin) Security; };
25533
25535
25534
25536
home-assistant = callPackage ../servers/home-assistant { };