waylandpp: init at 0.2.5
This commit is contained in:
parent
d27643bc0a
commit
b5045c610f
23
pkgs/development/libraries/waylandpp/default.nix
Normal file
23
pkgs/development/libraries/waylandpp/default.nix
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{ 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -13251,6 +13251,8 @@ in
|
|||||||
|
|
||||||
wayland-protocols = callPackage ../development/libraries/wayland/protocols.nix { };
|
wayland-protocols = callPackage ../development/libraries/wayland/protocols.nix { };
|
||||||
|
|
||||||
|
waylandpp = callPackage ../development/libraries/waylandpp { };
|
||||||
|
|
||||||
wcslib = callPackage ../development/libraries/wcslib { };
|
wcslib = callPackage ../development/libraries/wcslib { };
|
||||||
|
|
||||||
webkitgtk = callPackage ../development/libraries/webkitgtk {
|
webkitgtk = callPackage ../development/libraries/webkitgtk {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user