Merge pull request #442 from pSub/keter
New: keter, Yesod deployment manager.
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
{ cabal, aeson, certificate, conduit, cryptoApi, cryptoRandomApi
|
||||
, network, networkConduit, pem, systemFileio, systemFilepath, tls
|
||||
, tlsExtra, transformers
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "network-conduit-tls";
|
||||
version = "1.0.0.1";
|
||||
sha256 = "1bfb888j7raan764sgq50xxmckgqg3cnz3fcmvpqdjp7lclh313z";
|
||||
buildDepends = [
|
||||
aeson certificate conduit cryptoApi cryptoRandomApi network
|
||||
networkConduit pem systemFileio systemFilepath tls tlsExtra
|
||||
transformers
|
||||
];
|
||||
meta = {
|
||||
homepage = "https://github.com/snoyberg/conduit";
|
||||
description = "Create TLS-aware network code with conduits";
|
||||
license = self.stdenv.lib.licenses.mit;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
||||
@@ -0,0 +1,15 @@
|
||||
{ cabal, conduit, hspec, transformers }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "unix-process-conduit";
|
||||
version = "0.2.0.2";
|
||||
sha256 = "1n9ja7dlxhsxyglfzk397xdgvdny766y1isrb5d065srxprsj2g6";
|
||||
buildDepends = [ conduit transformers ];
|
||||
testDepends = [ conduit hspec transformers ];
|
||||
meta = {
|
||||
homepage = "https://github.com/snoyberg/conduit";
|
||||
description = "Run processes on Unix systems, with a conduit interface";
|
||||
license = self.stdenv.lib.licenses.mit;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
||||
Reference in New Issue
Block a user