Files
nixpkgs/pkgs/by-name/wm/wmctrl/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

43 lines
935 B
Nix

{
lib,
stdenv,
fetchurl,
libX11,
glib,
pkg-config,
libXmu,
}:
stdenv.mkDerivation rec {
pname = "wmctrl";
version = "1.07";
src = fetchurl {
# NOTE: 2019-04-11: There is also a semi-official mirror: http://tripie.sweb.cz/utils/wmctrl/
url = "https://sites.google.com/site/tstyblo/wmctrl/${pname}-${version}.tar.gz";
sha256 = "1afclc57b9017a73mfs9w7lbdvdipmf9q0xdk116f61gnvyix2np";
};
strictDeps = true;
depsBuildBuild = [ pkg-config ];
nativeBuildInputs = [ glib.dev ];
buildInputs = [
libX11
libXmu
glib
];
patches = [ ./64-bit-data.patch ];
meta = {
homepage = "https://sites.google.com/site/tstyblo/wmctrl";
description = "CLI tool to interact with EWMH/NetWM compatible X Window Managers";
license = lib.licenses.gpl2Plus;
platforms = with lib.platforms; all;
maintainers = [ lib.maintainers.Anton-Latukha ];
mainProgram = "wmctrl";
};
}