My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/idris-modules/vdom.nix

24 lines
553 B

{ 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 ];
};
}