biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / misc / waylevel / default.nix
blobf0688ebf47eeb774efbf195340e99c95e0476bc4
1 { lib
2 , fetchFromSourcehut
3 , rustPlatform
4 , wayland
5 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "waylevel";
8   version = "1.0.0";
10   src = fetchFromSourcehut {
11     owner = "~shinyzenith";
12     repo = pname;
13     rev = version;
14     hash = "sha256-T2gqiRcKrKsvwGNnWrxR1Ga/VX4AyllYn1H25aIKt5s=";
15   };
17   cargoHash = "sha256-gw5m1/btJ5zZP04C7BCnHqEOUBoeu0whK8W7xA+xSQo=";
19   postFixup = ''
20     patchelf --set-rpath ${lib.makeLibraryPath [wayland]} $out/bin/waylevel
21   '';
23   meta = with lib; {
24     description = "Tool to print wayland toplevels and other compositor info";
25     homepage = "https://git.sr.ht/~shinyzenith/waylevel";
26     license = licenses.bsd2;
27     maintainers = with maintainers; [ dit7ya ];
28     platforms = platforms.linux;
29     mainProgram = "waylevel";
30   };