Guest User

Untitled

a guest
Oct 24th, 2018
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. let nixpkgs = import (builtins.fetchTarball {
  2. url = "https://github.com/nixos/nixpkgs/archive/df29219f5118dd1ae1d02108aeea4484e20d67e8.tar.gz";
  3. sha256 = "0lp6j6as8pbj6q7cpr0nbbh0nrxyf184x001jg5d5mwis03zky70";
  4. }) ;
  5. in
  6. nixpkgs {
  7. config = {
  8. allowUnfree = true;
  9. packageOverrides = pkgs: {
  10. haskellPackages = pkgs.haskellPackages.override {
  11. overrides = self: super: {
  12. text-s3 = self.callPackage text-s3/. {};
  13. shakeTestbett = self.callPackage shakeTestbett/. {zlib = pkgs.zlib.static; glibc = pkgs.glibc.static; static = true; };
  14. shakeTestbettWithDevTools = pkgs.haskell.lib.addBuildDepends self.shakeTestbett [self.cabal-install self.hlint self.ghcid];
  15. };
  16. };
  17. };
  18. };
  19. }
Advertisement
Add Comment
Please, Sign In to add comment