1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

haskell-io-storage: added version 0.3

svn path=/nixpkgs/trunk/; revision=29242
This commit is contained in:
Peter Simons 2011-09-13 17:35:12 +00:00
parent 8c8d88080d
commit 6557b25b37
2 changed files with 19 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{ cabal }:
cabal.mkDerivation (self: {
pname = "io-storage";
version = "0.3";
sha256 = "1ga9bd7iri6vlsxnjx765yy3bxc4lbz644wyw88yzvpjgz6ga3cs";
meta = {
homepage = "http://github.com/willdonnelly/io-storage";
description = "A key-value store in the IO monad";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [
self.stdenv.lib.maintainers.andres
self.stdenv.lib.maintainers.simons
];
};
})

View file

@ -773,6 +773,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
instantGenerics = callPackage ../development/libraries/haskell/instant-generics {};
ioStorage = callPackage ../development/libraries/haskell/io-storage {};
irc = callPackage ../development/libraries/haskell/irc {
parsec = self.parsec2;
};