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