haskellPackages.hedis: New expression
This commit is contained in:
parent
80b701ca94
commit
bbdadcd8c6
12
pkgs/development/libraries/haskell/BoundedChan/default.nix
Normal file
12
pkgs/development/libraries/haskell/BoundedChan/default.nix
Normal file
@ -0,0 +1,12 @@
|
||||
{ cabal }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "BoundedChan";
|
||||
version = "1.0.1.0";
|
||||
sha256 = "1v4lmp3j8lzk1m2pv5l90j80y0c6yxm6gb1ww9ffsz2jxfzz8vd8";
|
||||
meta = {
|
||||
description = "Implementation of bounded channels";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
22
pkgs/development/libraries/haskell/hedis/default.nix
Normal file
22
pkgs/development/libraries/haskell/hedis/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ cabal, attoparsec, BoundedChan, bytestringLexing, HUnit, mtl
|
||||
, network, resourcePool, testFramework, testFrameworkHunit, time
|
||||
, vector
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "hedis";
|
||||
version = "0.6.5";
|
||||
sha256 = "1kn8i49yxms1bpjwpy4m8vyycgi755zvy4zc66w068nmnd1kiykh";
|
||||
buildDepends = [
|
||||
attoparsec BoundedChan bytestringLexing mtl network resourcePool
|
||||
time vector
|
||||
];
|
||||
testDepends = [ HUnit mtl testFramework testFrameworkHunit time ];
|
||||
meta = {
|
||||
homepage = "https://github.com/informatikr/hedis";
|
||||
description = "Client library for the Redis datastore: supports full command set, pipelining";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
doCheck = false;
|
||||
})
|
@ -286,6 +286,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
|
||||
boundingboxes_0_2 = callPackage ../development/libraries/haskell/boundingboxes/0.2.nix {};
|
||||
boundingboxes = self.boundingboxes_0_2;
|
||||
|
||||
BoundedChan = callPackage ../development/libraries/haskell/BoundedChan {};
|
||||
|
||||
brainfuck = callPackage ../development/libraries/haskell/brainfuck {};
|
||||
|
||||
bson = callPackage ../development/libraries/haskell/bson {};
|
||||
@ -1002,6 +1004,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
|
||||
|
||||
hcltest = callPackage ../development/libraries/haskell/hcltest {};
|
||||
|
||||
hedis = callPackage ../development/libraries/haskell/hedis {};
|
||||
|
||||
heredoc = callPackage ../development/libraries/haskell/heredoc {};
|
||||
|
||||
hexpat = callPackage ../development/libraries/haskell/hexpat {};
|
||||
|
Loading…
Reference in New Issue
Block a user