nixpkgs/pkgs/development/libraries/waylandpp/default.nix
2019-04-14 20:32:26 -04:00

24 lines
625 B
Nix

{ stdenv, fetchFromGitHub, cmake, pkgconfig, pugixml, wayland, libGL }:
stdenv.mkDerivation rec {
pname = "waylandpp";
version = "0.2.5";
src = fetchFromGitHub {
owner = "NilsBrause";
repo = pname;
rev = version;
sha256 = "16h57hzd688664qcyznzhjp3hxipdkzgv46x82yhkww24av8b55n";
};
nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [ pugixml wayland libGL ];
meta = with stdenv.lib; {
description = "Wayland C++ binding";
homepage = https://github.com/NilsBrause/waylandpp/;
license = with licenses; [ bsd2 hpnd ];
maintainers = with maintainers; [ minijackson ];
};
}