nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ lib, buildNimPackage, fetchFromSourcehut, getdns }:
2
3buildNimPackage rec {
4 pname = "taps";
5 version = "20221228";
6 src = fetchFromSourcehut {
7 owner = "~ehmry";
8 repo = "nim_${pname}";
9 rev = version;
10 hash = "sha256-0EjMP5pIPJg4/3nzj6ECC68f709TS06OrJlTZ0tavEo=";
11 };
12 propagatedBuildInputs = [ getdns ];
13 doCheck = false;
14 meta = src.meta // {
15 description = "Transport Services Interface";
16 license = lib.licenses.isc;
17 maintainers = [ lib.maintainers.ehmry ];
18 };
19}