nixpkgs/pkgs/development/nim-packages/taps/default.nix
2023-07-20 22:56:19 +01:00

20 lines
501 B
Nix

{ lib, buildNimPackage, fetchFromSourcehut, getdns }:
buildNimPackage rec {
pname = "taps";
version = "20230331";
src = fetchFromSourcehut {
owner = "~ehmry";
repo = "nim_${pname}";
rev = version;
hash = "sha256-p2DBJWFwS82oHPq0uMCtZWFbn8GFndEJBjhkHeuPGos=";
};
propagatedBuildInputs = [ getdns ];
doCheck = false;
meta = src.meta // {
description = "Transport Services Interface";
license = lib.licenses.isc;
maintainers = [ lib.maintainers.ehmry ];
};
}