summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/HStringTemplate/default.nix
blob: 0d9c34b890e6c433d64b9e969f44c9f8f31d6a22 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{cabal, parsec, time, text, utf8String, parallel}:

cabal.mkDerivation (self : {
  pname = "HStringTemplate";
  version = "0.6.5";
  sha256 = "e40b69e22900f381ca7fb080ea6e70d623e52e909bd7b896bc24e15c8e43252c";
  propagatedBuildInputs = [parsec time text utf8String parallel];
  meta = {
    description = "StringTemplate implementation in Haskell";
  };
})