mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-05-04 10:57:02 +00:00
qpid-cpp: update to 0.26
Also, remove a workaround that's no longer needed.
This commit is contained in:
parent
b372ce598a
commit
5d098e8206
1 changed files with 4 additions and 9 deletions
|
@ -1,22 +1,17 @@
|
||||||
{ stdenv, fetchurl, cmake, python, boost, libuuid }:
|
{ stdenv, fetchurl, cmake, python, boost, libuuid, ruby }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "${project}-cpp-${version}";
|
name = "${project}-cpp-${version}";
|
||||||
|
|
||||||
project = "qpid";
|
project = "qpid";
|
||||||
version = "0.24";
|
version = "0.26";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://apache/${project}/${version}/${name}.tar.gz";
|
url = "mirror://apache/${project}/${version}/${name}.tar.gz";
|
||||||
sha256 = "08nfks5jjipy5i4b6mz62ijrz5ryq32c478ix7l3fzmaim3cy8b8";
|
sha256 = "1c03yi19d5h5h78h37add9csmy0mzvvmvn7zkcalwszabdhsb5yk";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ cmake python boost libuuid ];
|
buildInputs = [ cmake python boost libuuid ruby ];
|
||||||
|
|
||||||
# workaround this
|
|
||||||
#/nix/store/n38ns73bm4iv62fihd9ih5b39w54yyaf-boost-1.54.0/include/boost/ptr_container/detail/map_iterator.hpp:52:48:
|
|
||||||
#error: type qualifiers ignored on function return type [-Werror=ignored-qualifiers]
|
|
||||||
cmakeFlags = "-DENABLE_WARNINGS=OFF";
|
|
||||||
|
|
||||||
# the subdir managementgen wants to install python stuff in ${python} and
|
# the subdir managementgen wants to install python stuff in ${python} and
|
||||||
# the installation tries to create some folders in /var
|
# the installation tries to create some folders in /var
|
||||||
|
|
Loading…
Add table
Reference in a new issue