]> woffs.de Git - fd/haskell-amqp-utils.git/blob - amqp-utils.nix
WiP rabbit hole
[fd/haskell-amqp-utils.git] / amqp-utils.nix
1 # SPDX-FileCopyrightText: 2022 Frank Doepper
2 #
3 # SPDX-License-Identifier: GPL-3.0-only
4
5 { lib, mkDerivation, amqp, base, bytestring, crypton-connection, containers
6 , data-default-class, process, text, time, tls, crypton-x509-system, unix
7 , hinotify, magic, network, directory, utf8-string, filepath, file-io
8 }:
9
10 mkDerivation {
11   pname = "amqp-utils";
12   version = "0.6.4.0";
13   src = ./.;
14   isLibrary = false;
15   isExecutable = true;
16   enableSharedExecutables = false;
17   executableHaskellDepends = [
18     amqp base bytestring crypton-connection containers data-default-class
19     process text time tls crypton-x509-system unix hinotify magic network
20     directory utf8-string filepath file-io
21   ];
22   description = "AMQP toolset for the command line";
23   license = lib.licenses.gpl3Only;
24 }