Use slugger 0.1.0.1 for post titles

This commit is contained in:
Robert W. Pearce 2021-07-31 06:58:54 -04:00
parent b96baa843e
commit a816227da7
No known key found for this signature in database
GPG key ID: 07A0E482E5616C9B
5 changed files with 21 additions and 37 deletions

View file

@ -18,6 +18,11 @@ final: prev:
let
hakyll-src = hpPrev.callHackage "hakyll" "4.14.0.0" {};
pandoc-src = hpPrev.callHackage "pandoc" "2.11.4" {}; # version specified by hayll 4.14.0.0
slugger-src = hpPrev.callHackageDirect {
pkg = "slugger";
ver = "0.1.0.1";
sha256 = "sha256-ggeo5TcbI4UlK/CtG4878USX9Cm7Faz16phdjlDOGaI=";
} {}; # not available yet because it's so new
in rec {
hakyll = pipe hakyll-src [
doJailbreak
@ -31,6 +36,8 @@ final: prev:
dontCheck
];
slugger = slugger-src;
ssg = hpPrev.callCabal2nix "ssg" ./ssg {};
website = prev.stdenv.mkDerivation {