-
Notifications
You must be signed in to change notification settings - Fork 162
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #658 from dfordivam/wasm-support-1
Add wasm cross compilation
- Loading branch information
Showing
8 changed files
with
66 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"owner": "reflex-frp", | ||
"repo": "reflex-dom", | ||
"branch": "master", | ||
"rev": "94c26076a71f229b5bd27128cf6fc0dbcba011ac", | ||
"sha256": "00sx5x51jv1j24qlhrbp5sqnqcyz1iy2sgjap0y97c4dkzxi3wd3" | ||
"branch": "develop", | ||
"rev": "e2b846037badee035d0c466173badd1c4c474d5a", | ||
"sha256": "12vj25zzg2xr6mvyw83skr24y30swmg79kmg7lizy3klwpv5dysc" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
self: super: { | ||
jsaddle-warp = null; | ||
jsaddle-webkitgtk = null; | ||
jsaddle-webkit2gtk = null; | ||
jsaddle-wkwebview = null; | ||
mkDerivation = args: super.mkDerivation (args // { | ||
dontStrip = true; | ||
enableSharedExecutables = false; | ||
enableSharedLibraries = false; | ||
enableDeadCodeElimination = false; | ||
doHaddock = false; | ||
doCheck = false; | ||
enableLibraryProfiling = false; | ||
}); | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"owner": "nixos", | ||
"owner": "WebGHC", | ||
"repo": "nixpkgs", | ||
"branch": "release-19.09", | ||
"rev": "49550f29cd9d6ed27f4a76ba3c3fe30edf882eb7", | ||
"sha256": "003fpkrcc5mw33q670q4z865zpr430cllbxhyzj8k9p4hbc8yqda" | ||
"branch": "wasm-r-p-1909-integ", | ||
"rev": "423fa4adb6276298cde0c12205efeb7bf1cbe805", | ||
"sha256": "0ssvc5j0p7nip0qsrdbfgc6wihzwyxa23hbr80dmjbfizywz7nzg" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# DO NOT HAND-EDIT THIS FILE | ||
let fetch = { private ? false, fetchSubmodules ? false, owner, repo, rev, sha256, ... }: | ||
if !fetchSubmodules && !private then builtins.fetchTarball { | ||
url = "https://github.com/${owner}/${repo}/archive/${rev}.tar.gz"; inherit sha256; | ||
} else (import <nixpkgs> {}).fetchFromGitHub { | ||
inherit owner repo rev sha256 fetchSubmodules private; | ||
}; | ||
in import (fetch (builtins.fromJSON (builtins.readFile ./github.json))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"owner": "WebGHC", | ||
"repo": "wasm-cross", | ||
"branch": "reflex-platform-integ", | ||
"private": false, | ||
"rev": "98dbc945147ed646724682a2a4f470bc592a5501", | ||
"sha256": "1vnxmxx262h6r0lslidd0fnnrsjz88jfx1dj7v66vl0pjdz7icb4" | ||
} |