]> woffs.de Git - fd/haskell-amqp-utils.git/blob - amqp-utils.nix
whitespace
[fd/haskell-amqp-utils.git] / amqp-utils.nix
1 { lib, mkDerivation, amqp, base, bytestring, connection, containers
2 , data-default-class, process, text, time, tls, x509-system, unix
3 , hinotify, magic, network, directory, utf8-string, filepath
4 }:
5
6 mkDerivation {
7   pname = "amqp-utils";
8   version = "0.6.2.4";
9   src = ./.;
10   isLibrary = false;
11   isExecutable = true;
12   enableSharedExecutables = false;
13   executableHaskellDepends = [
14     amqp base bytestring connection containers data-default-class
15     process text time tls x509-system unix hinotify magic network
16     directory utf8-string filepath
17   ];
18   description = "AMQP toolset for the command line";
19   license = lib.licenses.gpl3Only;
20 }