summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/event-list/default.nix
blob: 16b73d9bfb36367636205923a9e8a7d90c6ce0df (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ cabal, nonNegative, QuickCheck, transformers, utilityHt }:

cabal.mkDerivation (self: {
  pname = "event-list";
  version = "0.1.0.2";
  sha256 = "01j48871nijhkbqdsfvbvq01yr9b5a056fn03ccgazikfsd368ri";
  isLibrary = true;
  isExecutable = true;
  buildDepends = [ nonNegative QuickCheck transformers utilityHt ];
  meta = {
    homepage = "http://code.haskell.org/~thielema/event-list/";
    description = "Event lists with relative or absolute time stamps";
    license = "GPL";
    platforms = self.ghc.meta.platforms;
  };
})