Skip to content

Instantly share code, notes, and snippets.

@sorki
Created August 20, 2018 00:18
Show Gist options
  • Save sorki/7c127449827697992aad6a185bc75f47 to your computer and use it in GitHub Desktop.
Save sorki/7c127449827697992aad6a185bc75f47 to your computer and use it in GitHub Desktop.
GHCJS bytes dontCheck
let
pkgs = import <nixpkgs> { };
overrides =
(self: super:
{
bytes = pkgs.haskell.lib.dontCheck super.bytes;
})
;
packageSet = pkgs.haskell.packages.ghcjs84;
myGHCJS = packageSet.override { inherit overrides; };
in
myGHCJS.bytes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment