summary refs log tree commit diff
path: root/pkgs/tools/X11/wmutils-opt/default.nix
blob: 0d847262ea5872f2c300c90a5e6ce607241d822c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib, stdenv, fetchFromGitHub, libxcb }:

stdenv.mkDerivation rec {
  pname = "wmutils-opt";
  version = "1.0";

  src = fetchFromGitHub {
    owner = "wmutils";
    repo = "opt";
    rev = "v${version}";
    sha256 = "0gd05qsir1lnzfrbnfh08qwsryz7arwj20f886nqh41m87yqaljz";
  };

  buildInputs = [ libxcb ];

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

  meta = with lib; {
    description = "Optional addons to wmutils";
    homepage = "https://github.com/wmutils/opt";
    license = licenses.isc;
    maintainers = with maintainers; [ vifino ];
    platforms = platforms.unix;
  };
}