diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2016-02-18 17:31:43 +0000 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2016-02-18 17:31:43 +0000 |
commit | c87014b8c6f63da98ae331db56e143a982bdd93b (patch) | |
tree | 7c4d48c8ed3567862b518dfbb5d0254473c5f208 | |
parent | f832f6431aa0e9c96f9a72316be794a5503beecb (diff) | |
download | dirty-haskell.org-c87014b8c6f63da98ae331db56e143a982bdd93b.tar dirty-haskell.org-c87014b8c6f63da98ae331db56e143a982bdd93b.tar.gz dirty-haskell.org-c87014b8c6f63da98ae331db56e143a982bdd93b.tar.bz2 dirty-haskell.org-c87014b8c6f63da98ae331db56e143a982bdd93b.tar.xz dirty-haskell.org-c87014b8c6f63da98ae331db56e143a982bdd93b.zip |
Fixed deps
-rw-r--r-- | blog.cabal | 1 | ||||
-rw-r--r-- | blog.nix | 6 |
2 files changed, 4 insertions, 3 deletions
@@ -32,6 +32,7 @@ executable site | |||
32 | , hex >=0.1 && <1 | 32 | , hex >=0.1 && <1 |
33 | , temporary >=1.2 && <2 | 33 | , temporary >=1.2 && <2 |
34 | , process >=1.2 && <2 | 34 | , process >=1.2 && <2 |
35 | , process-extras >=0.3.3 && <1 | ||
35 | , directory >=1.2 && <2 | 36 | , directory >=1.2 && <2 |
36 | , deepseq >=1.4 && <2 | 37 | , deepseq >=1.4 && <2 |
37 | , regex-tdfa >=1.2 && <2 | 38 | , regex-tdfa >=1.2 && <2 |
@@ -1,7 +1,7 @@ | |||
1 | { mkDerivation, base, blaze-html, bytestring, containers | 1 | { mkDerivation, base, blaze-html, bytestring, containers |
2 | , cryptohash, data-default, deepseq, directory, filepath, hakyll | 2 | , cryptohash, data-default, deepseq, directory, filepath, hakyll |
3 | , hex, mtl, pandoc, pandoc-types, process, regex-tdfa, stdenv | 3 | , hex, mtl, pandoc, pandoc-types, process, process-extras |
4 | , temporary | 4 | , regex-tdfa, stdenv, temporary |
5 | }: | 5 | }: |
6 | mkDerivation { | 6 | mkDerivation { |
7 | pname = "dirty-haskell"; | 7 | pname = "dirty-haskell"; |
@@ -12,7 +12,7 @@ mkDerivation { | |||
12 | executableHaskellDepends = [ | 12 | executableHaskellDepends = [ |
13 | base blaze-html bytestring containers cryptohash data-default | 13 | base blaze-html bytestring containers cryptohash data-default |
14 | deepseq directory filepath hakyll hex mtl pandoc pandoc-types | 14 | deepseq directory filepath hakyll hex mtl pandoc pandoc-types |
15 | process regex-tdfa temporary | 15 | process process-extras regex-tdfa temporary |
16 | ]; | 16 | ]; |
17 | homepage = "https://git.yggdrasil.li/gkleen/pub/dirty-haskell.org"; | 17 | homepage = "https://git.yggdrasil.li/gkleen/pub/dirty-haskell.org"; |
18 | license = stdenv.lib.licenses.unfree; | 18 | license = stdenv.lib.licenses.unfree; |