summary refs log tree commit diff
path: root/pkgs/tools/X11/wmutils-core/default.nix
blob: fe5c70f6ce23af3b61be837f53280fe0e1b4684a (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, libxcb }:

stdenv.mkDerivation rec {
  pname = "wmutils-core";
  version = "1.1";

  src = fetchurl {
    url = "https://github.com/wmutils/core/archive/v${version}.tar.gz";
    sha256 = "0aq95khs154j004b79w9rgm80vpggxfqynha5rckm2cx20d1fa5s";
  };

  buildInputs = [ libxcb ];

  installFlags = [ "PREFIX=$(out)" ];

  meta = with stdenv.lib; {
    description = "Set of window manipulation tools";
    homepage = https://github.com/wmutils/core;
    license = licenses.isc;
    platforms = platforms.unix;
  };
}