forked from mirrors/nixpkgs
wmutils-libwm: init at 1.0
This commit is contained in:
parent
16a4332d60
commit
e33ffee6c7
25
pkgs/tools/X11/wmutils-libwm/default.nix
Normal file
25
pkgs/tools/X11/wmutils-libwm/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue