bandwhich: 0.23.0 -> 0.23.1; move to by-name; nixfmt; useFetchCargoVendor (#356934)
[NixPkgs.git] / pkgs / by-name / wm / wmutils-core / package.nix
blob5f35c29dbb42724ad2874284905afb040140949d
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   libxcb,
6   xcbutil,
7   xcb-util-cursor,
8 }:
10 stdenv.mkDerivation rec {
11   pname = "wmutils-core";
12   version = "1.7";
14   src = fetchFromGitHub {
15     owner = "wmutils";
16     repo = "core";
17     rev = "v${version}";
18     sha256 = "sha256-OKAvJovGu9rMxEe5g4kdL7Foj41kl3zUYIJa04jf0dI=";
19   };
21   buildInputs = [
22     libxcb
23     xcbutil
24     xcb-util-cursor
25   ];
27   installFlags = [ "PREFIX=$(out)" ];
29   meta = with lib; {
30     description = "Set of window manipulation tools";
31     homepage = "https://github.com/wmutils/core";
32     license = licenses.isc;
33     platforms = platforms.unix;
34   };