nixpkgs/pkgs/development/libraries/haskell/event-list/default.nix

19 lines
574 B
Nix
Raw Normal View History

{ cabal, nonNegative, QuickCheck, random, transformers, utilityHt
}:
2013-12-23 00:42:41 -08:00
cabal.mkDerivation (self: {
pname = "event-list";
version = "0.1.1";
sha256 = "1qv7a4np8cr0chbvlz0kmcrvc95w1z7fqs2pq0mkwx22hnslsh5l";
2013-12-23 00:42:41 -08:00
buildDepends = [ nonNegative QuickCheck transformers utilityHt ];
testDepends = [
nonNegative QuickCheck random transformers utilityHt
];
2013-12-23 00:42:41 -08:00
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;
};
})