83405b6dd2
GitOrigin-RevId: ac718d02867a84b42522a0ece52d841188208f2c
20 lines
590 B
Nix
20 lines
590 B
Nix
{ lib, buildNimPackage, fetchFromGitea, nimSHA2, preserves }:
|
|
|
|
buildNimPackage rec {
|
|
pname = "syndicate";
|
|
version = "20221102";
|
|
src = fetchFromGitea {
|
|
domain = "git.syndicate-lang.org";
|
|
owner = "ehmry";
|
|
repo = "${pname}-nim";
|
|
rev = version;
|
|
hash = "sha256-yTPbEsBcpEPXfmhykbWzWdnJ2ExEJxdii1L+mqx8VGQ=";
|
|
};
|
|
propagatedBuildInputs = [ nimSHA2 preserves ];
|
|
doCheck = true;
|
|
meta = src.meta // {
|
|
description = "Nim implementation of the Syndicated Actor model";
|
|
license = lib.licenses.unlicense;
|
|
maintainers = with lib.maintainers; [ ehmry ];
|
|
};
|
|
}
|