mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
wmctrl: command-line window-manipulation tool
This commit is contained in:
parent
75dedeb8bd
commit
1fa3afeb91
20
pkgs/tools/X11/wmctrl/default.nix
Normal file
20
pkgs/tools/X11/wmctrl/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user