mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
haskell-io-storage: added version 0.3
svn path=/nixpkgs/trunk/; revision=29242
This commit is contained in:
parent
8c8d88080d
commit
6557b25b37
2 changed files with 19 additions and 0 deletions
17
pkgs/development/libraries/haskell/io-storage/default.nix
Normal file
17
pkgs/development/libraries/haskell/io-storage/default.nix
Normal 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
|
||||
];
|
||||
};
|
||||
})
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue