Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a1eea8454dc1
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b9054ec551d2
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on May 8, 2018

  1. Copy the full SHA
    bf02618 View commit details

Commits on May 9, 2018

  1. Merge pull request #40168 from brainrape/init-idrisPackages-vdom

    idrisPackages.vdom: init at 0.6.0
    matthewbauer authored May 9, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    b9054ec View commit details
Showing with 30 additions and 0 deletions.
  1. +2 −0 pkgs/development/idris-modules/default.nix
  2. +28 −0 pkgs/development/idris-modules/vdom.nix
2 changes: 2 additions & 0 deletions pkgs/development/idris-modules/default.nix
Original file line number Diff line number Diff line change
@@ -194,6 +194,8 @@

union_type = callPackage ./union_type.nix {};

vdom = callPackage ./vdom.nix {};

vecspace = callPackage ./vecspace.nix {};

webgl = callPackage ./webgl.nix {};
28 changes: 28 additions & 0 deletions pkgs/development/idris-modules/vdom.nix
Original file line number Diff line number Diff line change
@@ -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;
};
}