mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +00:00
Merge pull request #182428 from dit7ya/waylevel
waylevel: init at 1.0.0
This commit is contained in:
commit
3020c8d6d3
31
pkgs/tools/misc/waylevel/default.nix
Normal file
31
pkgs/tools/misc/waylevel/default.nix
Normal file
@ -0,0 +1,31 @@
|
||||
{ lib
|
||||
, fetchFromSourcehut
|
||||
, makeWrapper
|
||||
, rustPlatform
|
||||
, wayland
|
||||
}:
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "waylevel";
|
||||
version = "1.0.0";
|
||||
|
||||
src = fetchFromSourcehut {
|
||||
owner = "~shinyzenith";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
hash = "sha256-T2gqiRcKrKsvwGNnWrxR1Ga/VX4AyllYn1H25aIKt5s=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-gw5m1/btJ5zZP04C7BCnHqEOUBoeu0whK8W7xA+xSQo=";
|
||||
|
||||
postFixup = ''
|
||||
patchelf --set-rpath ${lib.makeLibraryPath [wayland]} $out/bin/waylevel
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "A tool to print wayland toplevels and other compositor info";
|
||||
homepage = "https://git.sr.ht/~shinyzenith/waylevel";
|
||||
license = licenses.bsd2;
|
||||
maintainers = with maintainers; [ dit7ya ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -28381,6 +28381,8 @@ with pkgs;
|
||||
|
||||
wayshot = callPackage ../tools/misc/wayshot { };
|
||||
|
||||
waylevel = callPackage ../tools/misc/waylevel { };
|
||||
|
||||
wbg = callPackage ../applications/misc/wbg { };
|
||||
|
||||
hikari = callPackage ../applications/window-managers/hikari {
|
||||
|
Loading…
Reference in New Issue
Block a user