mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 11:02:05 +00:00
a30df95691
This change brings support for building and running the regressions test suites.
17 lines
560 B
Nix
17 lines
560 B
Nix
{ cabal, hspec, parsec, text }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "shakespeare";
|
|
version = "1.0.3.1";
|
|
sha256 = "08w1g19k9v9dvdy45j32kdic8vjhc10ad4g20q5ya0id4cd13qfs";
|
|
buildDepends = [ parsec text ];
|
|
testDepends = [ hspec parsec text ];
|
|
meta = {
|
|
homepage = "http://www.yesodweb.com/book/shakespearean-templates";
|
|
description = "A toolkit for making compile-time interpolated templates";
|
|
license = self.stdenv.lib.licenses.mit;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|