Finally downgrade Hakyll so it'll compile!!
parent
83f1f42013
commit
e3db7185af
22
shell.nix
22
shell.nix
|
@ -4,13 +4,23 @@
|
||||||
{ pkgs ? import <nixpkgs> {} }:
|
{ pkgs ? import <nixpkgs> {} }:
|
||||||
|
|
||||||
let
|
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; [
|
ghc = pkgs.haskellPackages.ghcWithHoogle (self: with self; [
|
||||||
hspec
|
hspec
|
||||||
split
|
split
|
||||||
hakyll
|
myPkg # hakyll
|
||||||
random
|
random
|
||||||
neat-interpolation
|
neat-interpolation
|
||||||
]);
|
]);
|
||||||
in
|
in
|
||||||
pkgs.mkShell {
|
pkgs.mkShell {
|
||||||
name = "haskell-shell";
|
name = "haskell-shell";
|
||||||
|
|
Loading…
Reference in New Issue