Skip to content
Snippets Groups Projects
Commit 9e5b984b authored by Daniel Firth's avatar Daniel Firth
Browse files

shakespeare: init at 2.0.30

parent 91446e32
No related merge requests found
......@@ -535,6 +535,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "servant-swagger-ui" "0.3.5.4.5.0"
, callHackage "servant-swagger-ui-core" "0.3.5"
, callHackage "servant-static-th" "1.0.0.0"
, callHackage "shakespeare" "2.0.30"
, callHackage "shake" "0.19.6"
, callHackage "shelly" "1.10.0"
, callHackage "simple-sendfile" "0.2.30"
......
......@@ -727,6 +727,8 @@ final: prev: with pkgs.haskell.lib; {
shake = prev.callPackage (./pkgs/shake.nix) { };
shakespeare = prev.callPackage (./pkgs/shakespeare.nix) { };
shelly = prev.callPackage (./pkgs/shelly.nix) { };
simple-sendfile = prev.callPackage (./pkgs/simple-sendfile.nix) { };
......
{ mkDerivation
, aeson
, base
, blaze-html
, blaze-markup
, bytestring
, containers
, directory
, exceptions
, file-embed
, ghc-prim
, hspec
, HUnit
, lib
, parsec
, process
, scientific
, template-haskell
, text
, th-lift
, time
, transformers
, unordered-containers
, vector
}:
mkDerivation {
pname = "shakespeare";
version = "2.0.30";
sha256 = "5c8dfe55db93303aafb03cfd969dc831d14bf4971a5fa1e5eae2459f64be1e0d";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
aeson
base
blaze-html
blaze-markup
bytestring
containers
directory
exceptions
file-embed
ghc-prim
parsec
process
scientific
template-haskell
text
th-lift
time
transformers
unordered-containers
vector
];
testHaskellDepends = [
aeson
base
blaze-html
blaze-markup
bytestring
containers
directory
exceptions
ghc-prim
hspec
HUnit
parsec
process
template-haskell
text
time
transformers
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "http://www.yesodweb.com/book/shakespearean-templates";
description = "A toolkit for making compile-time interpolated templates";
license = lib.licenses.mit;
broken = false;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment