summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/uu-interleaved/default.nix
blob: a71111282fadea2a164b6f249153579cb5d6330a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ cabal }:

cabal.mkDerivation (self: {
  pname = "uu-interleaved";
  version = "0.1.0.0";
  sha256 = "00zq89fjz3r5pj6qbci017cm9y2rsvl265y9d95q0rv6ljhsayzs";
  meta = {
    homepage = "http://www.cs.uu.nl/wiki/bin/view/HUT/ParserCombinators";
    description = "Providing an interleaving combinator for use with applicative/alternative style implementations";
    license = self.stdenv.lib.licenses.mit;
    platforms = self.ghc.meta.platforms;
  };
})