Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
557 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
build-idris-package,
fetchFromGitHub,
lib,
}:
build-idris-package {
pname = "vdom";
version = "0.6.0";
ipkgName = "idris-vdom";
src = fetchFromGitHub {
owner = "brandondyck";
repo = "idris-vdom";
rev = "ff32c14feeac937f7418830a9a3463cd9582be8a";
sha256 = "0aila1qdpmhrp556dzaxk7yn7vgkwcnbp9jhw8f8pl51xs3s2kvf";
};
meta = {
description = "Virtual DOM in pure Idris";
homepage = "https://github.com/brandondyck/idris-vdom";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.brainrape ];
};
}