a30df95691
This change brings support for building and running the regressions test suites.
16 lines
629 B
Nix
16 lines
629 B
Nix
{ cabal, hspec, HUnit, parsec, shakespeare, text, transformers }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "shakespeare-css";
|
|
version = "1.0.3";
|
|
sha256 = "0zk4nb4v9x04vkkgbzqanfpqgw9pqinf76l7d85fzclfgwacd0bz";
|
|
buildDepends = [ parsec shakespeare text transformers ];
|
|
testDepends = [ hspec HUnit shakespeare text ];
|
|
meta = {
|
|
homepage = "http://www.yesodweb.com/book/shakespearean-templates";
|
|
description = "Stick your haskell variables into css at compile time";
|
|
license = self.stdenv.lib.licenses.mit;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|