Skip to content

Instantly share code, notes, and snippets.

@heath
Created February 10, 2020 01:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save heath/dc15a9413b587f1036c9205e2b41a007 to your computer and use it in GitHub Desktop.
Save heath/dc15a9413b587f1036c9205e2b41a007 to your computer and use it in GitHub Desktop.
with import ./definitions.nix;
let
server = pkgs.haskell.packages.ghc865.callCabal2nix "app" ./. {};
client = pkgs.haskell.packages.ghcjs86.callCabal2nix "app" ./. {};
in
{
inherit server client;
app = pkgs.runCommand "miso-ismorphic-example" { inherit client server; } ''
mkdir -p $out/{bin,static}
cp ${server}/bin/* $out/bin/
${pkgs.tree}/bin/tree -a ${client}
cp ${client}/bin/client.jsexe/all.js $out/static/
'';
}
with (import (builtins.fetchTarball {
url = "https://github.com/dmjio/miso/archive/561ffad.tar.gz";
sha256 = "1wwzckz2qxb873wdkwqmx9gmh0wshcdxi7gjwkba0q51jnkfdi41";
}) {});
{
inherit pkgs;
servant-src = pkgs.fetchFromGitHub {
owner = "haskell-servant";
repo = "servant";
rev = "5998429" ;
sha256 = "1p21x6df0j6zsmjf4z9cahbi15mar80na8rx8hl9mkb9pfrj9dic";
};
servant-client-ghcjs = pkgs.haskell.packages.ghcjs.callCabal2nix "${servant-src}/servant-client-ghcjs" {};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment