hyprutils: init at 0.1.2
needed for Hyprland 41.1 Co-authored-by: Donovan Glover <donovan@dglover.co>
This commit is contained in:
parent
9ad8ae35ce
commit
0c723f647f
35
pkgs/by-name/hy/hyprutils/package.nix
Normal file
35
pkgs/by-name/hy/hyprutils/package.nix
Normal 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
|
||||
];
|
||||
};
|
||||
})
|
Loading…
Reference in New Issue
Block a user