hyprutils: init at 0.1.2

needed for Hyprland 41.1

Co-authored-by: Donovan Glover <donovan@dglover.co>
This commit is contained in:
John Titor 2024-06-14 21:46:42 +05:30
parent 9ad8ae35ce
commit 0c723f647f
No known key found for this signature in database
GPG Key ID: 29B0514F4E3C1CC0

View File

@ -0,0 +1,35 @@
{
lib,
stdenv,
cmake,
fetchFromGitHub,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "hyprutils";
version = "0.1.2";
src = fetchFromGitHub {
owner = "hyprwm";
repo = "hyprutils";
rev = "v${finalAttrs.version}";
hash = "sha256-8KvVqtApNt4FWTdn1TqVvw00rpqyG9UuUPA2ilPVD1U=";
};
nativeBuildInputs = [ cmake ];
outputs = [ "out" "dev" ];
doCheck = false;
meta = {
homepage = "https://github.com/hyprwm/hyprutils";
description = "Small C++ library for utilities used across the Hypr* ecosystem";
license = lib.licenses.bsd3;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [
donovanglover
johnrtitor
];
};
})