Finally downgrade Hakyll so it'll compile!!
parent
83f1f42013
commit
e3db7185af
12
shell.nix
12
shell.nix
|
@ -4,10 +4,20 @@
|
|||
{ pkgs ? import <nixpkgs> {} }:
|
||||
|
||||
let
|
||||
pkgs = import (builtins.fetchGit {
|
||||
# Descriptive name to make the store path easier to identify
|
||||
name = "hakyll-4.13.3.0";
|
||||
url = "https://github.com/nixos/nixpkgs-channels/";
|
||||
ref = "refs/heads/nixpkgs-unstable";
|
||||
rev = "fa54dd346fe5e73d877f2068addf6372608c820b";
|
||||
}) {};
|
||||
|
||||
myPkg = pkgs.haskellPackages.hakyll;
|
||||
|
||||
ghc = pkgs.haskellPackages.ghcWithHoogle (self: with self; [
|
||||
hspec
|
||||
split
|
||||
hakyll
|
||||
myPkg # hakyll
|
||||
random
|
||||
neat-interpolation
|
||||
]);
|
||||
|
|
Loading…
Reference in New Issue