This file contains hidden or 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
x@nixos ~$ build/try-reflex/try-reflex ~ | |
If you have any trouble with this script, please submit an issue at https://github.com/ryantrinkle/try-reflex/issues | |
Entering the reflex sandbox... | |
download-from-binary-cache.pl: still waiting for ‘https://ryantrinkle.com:5443/rx89bv9rywv6kghkbjvyx2692nbfyf9r.narinfo’ after 5 seconds... | |
download-from-binary-cache.pl: could not download ‘https://ryantrinkle.com:5443/rx89bv9rywv6kghkbjvyx2692nbfyf9r.narinfo’ (Curl error 7) | |
download-from-binary-cache.pl: still waiting for ‘https://ryantrinkle.com:5443/rx89bv9rywv6kghkbjvyx2692nbfyf9r.narinfo’ after 5 seconds... | |
download-from-binary-cache.pl: could not download ‘https://ryantrinkle.com:5443/rx89bv9rywv6kghkbjvyx2692nbfyf9r.narinfo’ (Curl error 7) | |
building path(s) ‘/nix/store/rx89bv9rywv6kghkbjvyx2692nbfyf9r-nixpkgs-00a52d4’ | |
exporting git://github.com/ryantrinkle/nixpkgs (rev 00a52d4cc5158611de0a73abcb15fa2d |
This file contains hidden or 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
build/try-reflex/try-reflex --option build-use-substitutes false | |
If you have any trouble with this script, please submit an issue at https://github.com/ryantrinkle/try-reflex/issues | |
Entering the reflex sandbox... | |
download-from-binary-cache.pl: still waiting for ‘https://ryantrinkle.com:5443/rx89bv9rywv6kghkbjvyx2692nbfyf9r.narinfo’ after 5 seconds... | |
This file contains hidden or 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
svgElAttr :: MonadWidget t m | |
=> String | |
-> Map String String | |
-> m a | |
-> m a | |
svgElAttr string ats child = do | |
(_,c) <- svgElAttr' string ats child | |
return c | |
svgElAttr' :: (MonadWidget t m, Attributes m attrs) |
This file contains hidden or 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
{ nixpkgs ? import <nixpkgs> {}, compiler ? "default" }: | |
let | |
inherit (nixpkgs) pkgs; | |
f = { mkDerivation, array, base, bytestring, containers | |
, directory, dlist, either, ghcjs-dom, lens, mtl | |
, optparse-applicative, parsec, process, product-profunctors | |
, safe, semigroups, stdenv, template-haskell, text |
This file contains hidden or 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
x@nixos ~/c/server$ ls ~/c/server | |
default.nix | |
x@nixos ~/c/server$ cat default.nix ~/c/server | |
{ mkDerivation, array, base, bytestring, containers, directory | |
, dlist, either, lens, mtl, optparse-applicative, parsec | |
, process, product-profunctors, safe, semigroups | |
, stdenv, template-haskell, text, text-format, time, transformers | |
}: | |
mkDerivation { | |
pname = "verify"; |
This file contains hidden or 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
{ haskellPackages, platform }: | |
with haskellPackages; | |
[ | |
############################################################################## | |
# Add general packages here # | |
############################################################################## | |
reflex | |
reflex-dom |
NewerOlder