wmutils-libwm: init at 1.0

This commit is contained in:
Benjamin Hougland 2020-04-18 08:40:58 -04:00
parent 16a4332d60
commit e33ffee6c7
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ stdenv, fetchFromGitHub, libxcb }:
stdenv.mkDerivation rec {
pname = "wmutils-libwm";
version = "1.0";
src = fetchFromGitHub {
owner = "wmutils";
repo = "libwm";
rev = "v${version}";
sha256 = "1lpbqrilhffpzc0b7vnp08jr1wr96lndwc7y0ck8hlbzlvm662l0";
};
buildInputs = [ libxcb ];
installFlags = [ "PREFIX=$(out)" ];
meta = with stdenv.lib; {
description = "A small library for X window manipulation";
homepage = "https://github.com/wmutils/libwm";
license = licenses.isc;
maintainers = with maintainers; [ bhougland ];
platforms = platforms.unix;
};
}

View file

@ -26048,6 +26048,8 @@ in
wmutils-core = callPackage ../tools/X11/wmutils-core { };
wmutils-libwm = callPackage ../tools/X11/wmutils-libwm { };
wmutils-opt = callPackage ../tools/X11/wmutils-opt { };
wordpress = callPackage ../servers/web-apps/wordpress { };