wmutils-libwm: 1.0 -> 1.3 (#389353)

This commit is contained in:
Peder Bergebakken Sundt 2025-03-20 03:53:55 +01:00 committed by GitHub
commit b564779d49
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3,28 +3,32 @@
stdenv,
fetchFromGitHub,
libxcb,
xcb-util-cursor,
}:
stdenv.mkDerivation rec {
pname = "wmutils-libwm";
version = "1.0";
version = "1.3";
src = fetchFromGitHub {
owner = "wmutils";
repo = "libwm";
rev = "v${version}";
sha256 = "1lpbqrilhffpzc0b7vnp08jr1wr96lndwc7y0ck8hlbzlvm662l0";
tag = "v${version}";
hash = "sha256-ROWRgTn33c5gH4ZdkwZ05rRg/Z9e2NppAQSNExSGZ4s=";
};
buildInputs = [ libxcb ];
buildInputs = [
libxcb
xcb-util-cursor
];
installFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
meta = {
description = "Small library for X window manipulation";
homepage = "https://github.com/wmutils/libwm";
license = licenses.isc;
maintainers = with maintainers; [ bhougland ];
platforms = platforms.unix;
license = lib.licenses.isc;
maintainers = with lib.maintainers; [ bhougland ];
platforms = lib.platforms.unix;
};
}