mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
properties-cpp: init at 0.0.1
Co-authored-by: Luke Adams <luke.adams@belljar.io> Co-authored-by: Volth <volth@webmaster.ms> Co-authored-by: Jörg Thalheim <Mic92@users.noreply.github.com>
This commit is contained in:
parent
dfa314c382
commit
07632cbaab
27
pkgs/development/libraries/properties-cpp/default.nix
Normal file
27
pkgs/development/libraries/properties-cpp/default.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ stdenv, lib, fetchurl, cmake, pkgconfig, gtest, doxygen
|
||||
, graphviz, lcov, writeText }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "properties-cpp";
|
||||
version = "0.0.1";
|
||||
|
||||
src = let srcver = version+"+14.10.20140730"; in
|
||||
fetchurl {
|
||||
url = "https://launchpad.net/ubuntu/+archive/primary/+files/${pname}_${srcver}.orig.tar.gz";
|
||||
sha256 = "08vjyv7ibn6jh2ikj5v48kjpr3n6hlkp9qlvdn8r0vpiwzah0m2w";
|
||||
};
|
||||
|
||||
buildInputs = [ cmake gtest doxygen pkgconfig graphviz lcov ];
|
||||
|
||||
patchPhase = ''
|
||||
sed -i "/add_subdirectory(tests)/d" CMakeLists.txt
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://launchpad.net/properties-cpp;
|
||||
description = "A very simple convenience library for handling properties and signals in C++11.";
|
||||
license = licenses.lgpl3;
|
||||
maintainers = with maintainers; [ edwtjo ];
|
||||
};
|
||||
|
||||
}
|
@ -19012,6 +19012,8 @@ in
|
||||
python = python3;
|
||||
} // (config.profanity or {}));
|
||||
|
||||
properties-cpp = callPackage ../development/libraries/properties-cpp { };
|
||||
|
||||
protonmail-bridge = libsForQt511.callPackage ../applications/networking/protonmail-bridge { };
|
||||
|
||||
psi = callPackage ../applications/networking/instant-messengers/psi { };
|
||||
|
Loading…
Reference in New Issue
Block a user