lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 18.03-beta 27 lines 693 B view raw
1{ stdenv, fetchFromGitHub }: 2 3stdenv.mkDerivation rec { 4 name = "libamqpcpp-${version}"; 5 version = "2.7.4"; 6 7 src = fetchFromGitHub { 8 owner = "CopernicaMarketingSoftware"; 9 repo = "AMQP-CPP"; 10 rev = "v${version}"; 11 sha256 = "0m010bz0axawcpv4d1p1vx7c6r8lg27w2s2vjqpbpg99w35n6c8k"; 12 }; 13 14 patches = [ ./libamqpcpp-darwin.patch ]; 15 16 makeFlags = [ "PREFIX=$(out)" ]; 17 18 enableParallelBuilding = true; 19 20 meta = with stdenv.lib; { 21 description = "Library for communicating with a RabbitMQ server"; 22 homepage = https://github.com/CopernicaMarketingSoftware/AMQP-CPP; 23 license = licenses.asl20; 24 maintainers = [ maintainers.mjp ]; 25 platforms = platforms.all; 26 }; 27}