1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-28 16:42:09 +00:00
nixpkgs/pkgs/development/libraries/haskell/shakespeare-text/default.nix
2014-02-10 20:54:54 +01:00

17 lines
580 B
Nix

{ cabal, hspec, HUnit, shakespeare, text }:
cabal.mkDerivation (self: {
pname = "shakespeare-text";
version = "1.0.1";
sha256 = "1vxy1d8r9wd8qijmy2jm7c7y7wg77qnzsh1ga0rlh3nklj9w01ml";
buildDepends = [ shakespeare text ];
testDepends = [ hspec HUnit text ];
meta = {
homepage = "http://www.yesodweb.com/book/shakespearean-templates";
description = "Interpolation with quasi-quotation: put variables strings";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})