idrisPackages.vdom: init at 0.6.0

This commit is contained in:
Márton Boros 2018-05-08 11:41:52 +02:00
parent 4dc33d06b9
commit bf02618e1f
2 changed files with 30 additions and 0 deletions

View file

@ -194,6 +194,8 @@
union_type = callPackage ./union_type.nix {};
vdom = callPackage ./vdom.nix {};
vecspace = callPackage ./vecspace.nix {};
webgl = callPackage ./webgl.nix {};

View file

@ -0,0 +1,28 @@
{ build-idris-package
, fetchFromGitHub
, prelude
, base
, lib
, idris
}:
build-idris-package {
name = "vdom";
version = "0.6.0";
idrisDeps = [ prelude base ];
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 ];
inherit (idris.meta) platforms;
};
}