summary refs log tree commit diff
path: root/pkgs/tools/X11/wmctrl/default.nix
blob: 2e23e7bd4de42da2921bf23378c89991baf9f823 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{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 ];

  patches = [ ./64-bit-data.patch ];

  meta = {
    homepage = http://tomas.styblo.name/wmctrl/;
    description = "Command line tool to interact with an EWMH/NetWM compatible X Window Manager";
    license = stdenv.lib.licenses.gpl2;
    platforms = with stdenv.lib.platforms; all;
  };
}