]> woffs.de Git - fd/haskell-amqp-utils.git/blob - amqp.nix
manpages
[fd/haskell-amqp-utils.git] / amqp.nix
1 # SPDX-FileCopyrightText: 2022 Frank Doepper
2 #
3 # SPDX-License-Identifier: GPL-3.0-only
4
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
8  , xml
9  }:
10  mkDerivation {
11    pname = "amqp";
12    version = "0.19.0";
13    sha256 = "1v2jwf9y6mw9f89a9ca66p42da8g5n1ain89gjr7sv6v6r2jxinj";
14    isLibrary = true;
15    isExecutable = true;
16    libraryHaskellDepends = [
17      base binary bytestring clock connection containers
18      data-binary-ieee754 monad-control network network-uri split stm
19      text vector
20    ];
21    executableHaskellDepends = [ base containers xml ];
22    testHaskellDepends = [
23      base binary bytestring clock connection containers
24      data-binary-ieee754 hspec hspec-expectations network network-uri
25      split stm text vector
26    ];
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;
31  }