Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
justinwoo committed Dec 15, 2021
1 parent e911d10 commit c9575ca
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 4 deletions.
6 changes: 3 additions & 3 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
"output"
],
"dependencies": {
"purescript-record": "^2.0.1",
"purescript-typelevel-prelude": "^5.0.0"
"purescript-record": "^3.0.0",
"purescript-typelevel-prelude": "^6.0.0"
},
"devDependencies": {
"purescript-console": "^4.2.0"
"purescript-console": "^5.0.0"
}
}
18 changes: 18 additions & 0 deletions shell.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{ pkgs ? import <nixpkgs> { } }:
let
easy-ps = import
(pkgs.fetchFromGitHub {
owner = "justinwoo";
repo = "easy-purescript-nix";
rev = "5716cd791c999b3246b4fe173276b42c50afdd8d";
sha256 = "1r9lx4xhr42znmwb2x2pzah920klbjbjcivp2f0pnka7djvd2adq";
}) {
inherit pkgs;
};
in
pkgs.mkShell {
buildInputs = [
easy-ps.purs
easy-ps.psc-package
];
}
2 changes: 1 addition & 1 deletion src/Naporitan.purs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ instance reflectRecordProxyInst ::
where
builder = reflectRecordProxyBuilder (RLProxy :: RLProxy rl)

class ReflectRecordProxyBuilder (rl :: RL.RowList) (i :: # Type) (o :: # Type)
class ReflectRecordProxyBuilder (rl :: RL.RowList Type) (i :: Row Type) (o :: Row Type)
| rl -> i o where
reflectRecordProxyBuilder :: RLProxy rl -> Builder { | i } { | o }

Expand Down

0 comments on commit c9575ca

Please sign in to comment.