wmctrl: command-line window-manipulation tool

This commit is contained in:
Sergey Mironov 2013-07-26 18:15:22 +04:00 committed by Vladimír Čunát
parent 75dedeb8bd
commit 1fa3afeb91
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,20 @@
{stdenv, fetchurl, libX11, glib, pkgconfig, libXmu }:
stdenv.mkDerivation rec {
name = "wmctrl-1.07";
src = fetchurl {
url = "http://tomas.styblo.name/wmctrl/dist/${name}.tar.gz";
sha256 = "1afclc57b9017a73mfs9w7lbdvdipmf9q0xdk116f61gnvyix2np";
};
buildInputs = [ libX11 libXmu glib pkgconfig ];
meta = {
homepage = http://tomas.styblo.name/wmctrl/;
description = "wmctrl is a UNIX/Linux command line tool to interact with an EWMH/NetWM compatible X Window Manager";
license = "GPL";
platforms = with stdenv.lib.platforms; all;
};
}

View File

@ -8648,6 +8648,8 @@ let
wmname = callPackage ../applications/misc/wmname { };
wmctrl = callPackage ../tools/X11/wmctrl { };
# I'm keen on wmiimenu only >wmii-3.5 no longer has it...
wmiimenu = import ../applications/window-managers/wmii31 {
libixp = libixp_for_wmii;