Skip to content

Instantly share code, notes, and snippets.

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
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...
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)
{ 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
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";
{ haskellPackages, platform }:
with haskellPackages;
[
##############################################################################
# Add general packages here #
##############################################################################
reflex
reflex-dom