1 # SPDX-FileCopyrightText: 2022 Frank Doepper
3 # SPDX-License-Identifier: GPL-3.0-only
5 { stdenv, mkDerivation, base, binary, bytestring, clock, connection
6 , containers, data-binary-ieee754, hspec, hspec-expectations
7 , monad-control, network, network-uri, split, stm, text, vector
13 sha256 = "1v2jwf9y6mw9f89a9ca66p42da8g5n1ain89gjr7sv6v6r2jxinj";
16 libraryHaskellDepends = [
17 base binary bytestring clock connection containers
18 data-binary-ieee754 monad-control network network-uri split stm
21 executableHaskellDepends = [ base containers xml ];
22 testHaskellDepends = [
23 base binary bytestring clock connection containers
24 data-binary-ieee754 hspec hspec-expectations network network-uri
27 homepage = "https://github.com/hreinhardt/amqp";
28 description = "Client library for AMQP servers (currently only RabbitMQ)";
29 license = stdenv.lib.licenses.bsd3;
30 hydraPlatforms = stdenv.lib.platforms.none;