nixpkgs/pkgs/tools/X11/wmctrl/default.nix

21 lines
578 B
Nix
Raw Normal View History

{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;
};
}