2021-02-06 14:27:41 -08:00
|
|
|
{ lib, stdenv, fetchurl, libxcb, xcbutil, xcb-util-cursor }:
|
2015-03-08 07:46:02 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "wmutils-core";
|
2021-02-06 14:27:41 -08:00
|
|
|
version = "1.5";
|
2015-03-08 07:46:02 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/wmutils/core/archive/v${version}.tar.gz";
|
2021-02-06 14:27:41 -08:00
|
|
|
sha256 = "0wk39aq2lrnc0wjs8pv3cigw3lwy2qzaw0v61bwknd5wabm25bvj";
|
2015-03-08 07:46:02 -07:00
|
|
|
};
|
|
|
|
|
2021-02-06 14:27:41 -08:00
|
|
|
buildInputs = [ libxcb xcbutil xcb-util-cursor ];
|
2015-03-08 07:46:02 -07:00
|
|
|
|
|
|
|
installFlags = [ "PREFIX=$(out)" ];
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2015-03-08 07:46:02 -07:00
|
|
|
description = "Set of window manipulation tools";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/wmutils/core";
|
2015-03-08 07:46:02 -07:00
|
|
|
license = licenses.isc;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|