b9851a975e
* bemenu: init at 2017-02-14 * velox: 2015-11-03 -> 2017-07-04 * orbment, velox: don't expose subprojects the development of orbment and velox got stuck their subprojects (bemenu, dmenu-wayland, st-wayland) don't work correctly outside of parent projects so hide them to not confuse people swc and wld libraries are unpopular and unlike wlc are not used by anything except velox * pythonPackages.pydbus: init at 0.6.0 * way-cooler: 0.5.2 -> 0.6.2 * nixos/way-cooler: add module * dconf module: use for wayland non-invasive approach for #31293 see discussion at #32210 * sway: embed LD_LIBRARY_PATH for #32755 * way-cooler: switch from buildRustPackage to buildRustCrate #31150
33 lines
837 B
Nix
33 lines
837 B
Nix
{ lib, stdenv, fetchFromGitHub, pkgconfig
|
|
, wayland, fontconfig, pixman, freetype, libdrm
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "wld-${version}";
|
|
version = "git-2017-10-31";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "michaelforney";
|
|
repo = "wld";
|
|
rev = "b4e902bbecb678c45485b52c3aa183cbc932c595";
|
|
sha256 = "0j2n776flnzyw3vhxl0r8h1c48wrihi4g6bs2z8j4hbw5pnwq1k6";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ wayland fontconfig pixman freetype libdrm ];
|
|
|
|
makeFlags = "PREFIX=$(out)";
|
|
installPhase = "PREFIX=$out make install";
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
description = "A primitive drawing library targeted at Wayland";
|
|
homepage = src.meta.homepage;
|
|
license = lib.licenses.mit;
|
|
platforms = lib.platforms.linux;
|
|
maintainers = with lib.maintainers; [ ];
|
|
};
|
|
}
|