nixpkgs/pkgs/development/libraries/waylandpp/default.nix

46 lines
1.1 KiB
Nix
Raw Normal View History

2020-04-22 18:20:20 +03:00
{ stdenv
, fetchFromGitHub
, cmake
, pkg-config
2020-04-22 18:20:20 +03:00
, pugixml
, wayland
, libGL
, libffi
, buildPackages
, docSupport ? true
, doxygen ? null
}:
2019-03-26 22:23:35 +03:00
assert docSupport -> doxygen != null;
with stdenv.lib;
2019-03-26 22:23:35 +03:00
stdenv.mkDerivation rec {
pname = "waylandpp";
2020-06-30 21:37:43 +03:00
version = "0.2.8";
2019-03-26 22:23:35 +03:00
src = fetchFromGitHub {
owner = "NilsBrause";
repo = pname;
rev = version;
2020-06-30 21:37:43 +03:00
sha256 = "1kxiqab48p0n97pwg8c2zx56wqq32m3rcq7qd2pjj33ipcanb3qq";
2019-03-26 22:23:35 +03:00
};
cmakeFlags = [
"-DCMAKE_INSTALL_DATADIR=${placeholder "dev"}"
2020-04-22 20:53:19 +03:00
] ++ stdenv.lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
"-DWAYLAND_SCANNERPP=${buildPackages.waylandpp}/bin/wayland-scanner++"
];
nativeBuildInputs = [ cmake pkg-config ] ++ optional docSupport doxygen;
buildInputs = [ pugixml wayland libGL libffi ];
2019-03-26 22:23:35 +03:00
outputs = [ "bin" "dev" "lib" "out" ] ++ optionals docSupport [ "doc" "devman" ];
2019-03-26 22:23:35 +03:00
meta = with stdenv.lib; {
description = "Wayland C++ binding";
homepage = "https://github.com/NilsBrause/waylandpp/";
2019-03-26 22:23:35 +03:00
license = with licenses; [ bsd2 hpnd ];
maintainers = with maintainers; [ minijackson ];
};
}