Created
February 8, 2019 00:54
-
-
Save srhb/2f0cc71020441cc19df644ede73f3d8d to your computer and use it in GitHub Desktop.
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
let | |
overlay = self: super: { | |
z3 = super.z3.overrideAttrs (oa: { | |
src = self.fetchFromGitHub { | |
owner = "Z3Prover"; | |
repo = "z3"; | |
rev = "z3-4.7.1"; | |
sha256 = "1s850r6qifwl83zzgvrb5l0jigvmymzpv18ph71hg2bcpk7kjw3d"; | |
}; | |
}); | |
}; | |
in | |
{ pkgs ? import <nixpkgs> { overlays = [ overlay ]; } }: | |
pkgs.mkShell { | |
buildInputs = [ | |
(pkgs.haskell.packages.ghc844.ghcWithPackages (ps: with ps; [ z3 ] )) | |
]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment