Skip to content

Commit 023e513

Browse files
committed
Fix nix build
1 parent d21bb16 commit 023e513

File tree

2 files changed

+4
-10
lines changed

2 files changed

+4
-10
lines changed

dep/reflex-platform/github.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"owner": "reflex-frp",
33
"repo": "reflex-platform",
4-
"branch": "develop",
4+
"branch": "release/1.2.0.0",
55
"private": false,
6-
"rev": "6c8830e059a6d2859cb1b65acefed3c2f1d216d3",
7-
"sha256": "06kv45yq8qan0p22wzj5c9mx11ns1wddyqjr1xasjjkf6gaf0080"
6+
"rev": "f231e2425ac92339b8491cdd970930d63d9ad1ad",
7+
"sha256": "0b042x423p04shhidni08f47ydgpfj0rpqhb0m6gj2lg8b3s9l8k"
88
}

release.nix

+1-7
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{ reflex-platform ? import ./dep/reflex-platform
2+
, supportedSystems ? [ "x86_64-linux" "x86_64-darwin" ]
23
}:
34
let
45
rp = reflex-platform {};
56
pkgs = rp.nixpkgs;
6-
supportedSystems = [ "x86_64-linux" "x86_64-darwin" ];
77
inherit (pkgs) lib;
88
haskellLib = pkgs.haskell.lib;
99
commonOverrides = self: super: {
@@ -22,11 +22,6 @@ let
2222
ver = "0.2.0.0";
2323
sha256 = "b03a315f1aa8f70e5e3aab36b88ed2e49cd646c56b1e34c195dae13c929ca926";
2424
} {};
25-
bimap = self.callHackageDirect {
26-
pkg = "bimap";
27-
ver = "0.4.0";
28-
sha256 = "160zqqhjg48fr3a33gffd82qm3728c8hwf8sn37pbpv82fw71rzg";
29-
} {};
3025
reflex = self.callCabal2nix "reflex" (rp.hackGet ./dep/reflex) {};
3126
};
3227
ghcs = lib.genAttrs supportedSystems (system: let
@@ -95,7 +90,6 @@ let
9590
# Jailbroken until https://github.com/audreyt/string-qq/pull/3
9691
string-qq = haskellLib.dontCheck super.string-qq;
9792
# Tests aren't compatible with transformers-0.6
98-
bimap = haskellLib.dontCheck super.bimap;
9993
exception-transformers = haskellLib.doJailbreak (haskellLib.dontCheck super.exception-transformers);
10094

10195
};

0 commit comments

Comments
 (0)