about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/X11/wmutils-core/default.nix
blob: 4200293ed080e7b5be0951edef56dc5bc53d86dd (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 {
  name = "wmutils-core-${version}";
  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;
  };
}