11 stdenv.mkDerivation rec {
12 pname = "properties-cpp";
15 src = let srcver = "${version}+14.10.20140730"; in
17 url = "https://launchpad.net/ubuntu/+archive/primary/+files/${pname}_${srcver}.orig.tar.gz";
18 sha256 = "08vjyv7ibn6jh2ikj5v48kjpr3n6hlkp9qlvdn8r0vpiwzah0m2w";
22 sed -i "/add_subdirectory(tests)/d" CMakeLists.txt
25 nativeBuildInputs = [ cmake pkg-config ];
27 buildInputs = [ gtest doxygen graphviz lcov ];
30 homepage = "https://launchpad.net/properties-cpp";
31 description = "A very simple convenience library for handling properties and signals in C++11";
32 license = licenses.lgpl3Only;
33 maintainers = with maintainers; [ edwtjo ];