Unverified Commit 2320e169 authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

Merge pull request #217308 from aaronjheng/amqpcat

parents 92a9d3cb 935570ce
Loading
Loading
Loading
Loading
+33 −0
Original line number Diff line number Diff line
{ stdenv, lib, fetchFromGitHub, crystal, openssl, testers, amqpcat }:

crystal.buildCrystalPackage rec {
  pname = "amqpcat";
  version = "0.2.4";

  src = fetchFromGitHub {
    owner = "cloudamqp";
    repo = "amqpcat";
    rev = "v${version}";
    hash = "sha256-Ec8LlOYYp3fXYgvps/ikeB4MqBEXTw1BAF5nJyL7dI0=";
  };

  format = "shards";
  shardsFile = ./shards.nix;

  buildInputs = [ openssl ];

  # Tests require network access
  doCheck = false;

  passthru.tests.version = testers.testVersion {
    package = amqpcat;
  };

  meta = with lib; {
    description = "A CLI tool for publishing to and consuming from AMQP servers";
    homepage = "https://github.com/cloudamqp/amqpcat";
    license = licenses.mit;
    maintainers = with maintainers; [ aaronjheng ];
    broken = stdenv.isDarwin; # Linking errors. Hope someone can help fix it.
  };
}
+12 −0
Original line number Diff line number Diff line
{
  amq-protocol = {
    url = "https://github.com/cloudamqp/amq-protocol.cr.git";
    rev = "v0.3.24";
    sha256 = "011xia60wkmbjsk8j4qnswx0lg1i7vrchjwnxlksjv3npp2z98a3";
  };
  amqp-client = {
    url = "https://github.com/cloudamqp/amqp-client.cr.git";
    rev = "v0.6.2";
    sha256 = "0h9c2v7ks776msm3dn2d68y85i6mm4gm5s3jlrs8dlp36kndkplc";
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -238,6 +238,8 @@ with pkgs;
  althttpd = callPackage ../servers/althttpd { };
  amqpcat = callPackage ../development/tools/amqpcat { };
  anders = callPackage ../applications/science/logic/anders { };
  ankisyncd = callPackage ../servers/ankisyncd {