cabal2nix-2.8.2: test/golden-test-cases/minio-hs.nix.golden
{ mkDerivation, aeson, async, base, base64-bytestring, bytestring
, case-insensitive, conduit, conduit-combinators, conduit-extra
, containers, cryptonite, cryptonite-conduit, data-default
, directory, exceptions, fetchurl, filepath, http-client
, http-conduit, http-types, lifted-async, lifted-base, memory
, monad-control, protolude, QuickCheck, resourcet, tasty
, tasty-hunit, tasty-quickcheck, tasty-smallcheck, temporary, text
, text-format, time, transformers, transformers-base, vector
, xml-conduit
}:
mkDerivation {
pname = "minio-hs";
version = "0.3.2";
src = fetchurl {
url = "http://example.org/";
sha256 = "abc";
};
libraryHaskellDepends = [
aeson async base base64-bytestring bytestring case-insensitive
conduit conduit-combinators conduit-extra containers cryptonite
cryptonite-conduit data-default exceptions filepath http-client
http-conduit http-types lifted-async lifted-base memory
monad-control protolude resourcet text text-format time
transformers transformers-base vector xml-conduit
];
testHaskellDepends = [
aeson async base base64-bytestring bytestring case-insensitive
conduit conduit-combinators conduit-extra containers cryptonite
cryptonite-conduit data-default directory exceptions filepath
http-client http-conduit http-types lifted-async lifted-base memory
monad-control protolude QuickCheck resourcet tasty tasty-hunit
tasty-quickcheck tasty-smallcheck temporary text text-format time
transformers transformers-base vector xml-conduit
];
homepage = "https://github.com/minio/minio-hs#readme";
description = "A Minio Haskell Library for Amazon S3 compatible cloud storage";
license = stdenv.lib.licenses.asl20;
}