evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / wm / wmctrl / package.nix
blobb15b1eb6b4255eef709ffb4c5e7a4037a23313c3
1 { lib, stdenv
2 , fetchurl
3 , libX11
4 , glib
5 , pkg-config
6 , libXmu
7 }:
9 stdenv.mkDerivation rec {
11   pname = "wmctrl";
12   version = "1.07";
14   src = fetchurl {
15     # NOTE: 2019-04-11: There is also a semi-official mirror: http://tripie.sweb.cz/utils/wmctrl/
16     url = "https://sites.google.com/site/tstyblo/wmctrl/${pname}-${version}.tar.gz";
17     sha256 = "1afclc57b9017a73mfs9w7lbdvdipmf9q0xdk116f61gnvyix2np";
18   };
20   strictDeps = true;
21   depsBuildBuild = [ pkg-config ];
22   nativeBuildInputs = [ glib.dev ];
23   buildInputs = [ libX11 libXmu glib ];
25   patches = [ ./64-bit-data.patch ];
27   meta = {
28     homepage = "https://sites.google.com/site/tstyblo/wmctrl";
29     description = "CLI tool to interact with EWMH/NetWM compatible X Window Managers";
30     license = lib.licenses.gpl2Plus;
31     platforms = with lib.platforms; all;
32     maintainers = [ lib.maintainers.Anton-Latukha ];
33     mainProgram = "wmctrl";
34   };