Unverified Commit 464de794 authored by Thiago Kenji Okada's avatar Thiago Kenji Okada Committed by GitHub
Browse files

Merge pull request #205513 from edrex/river-tag-overlay

river-tag-overlay: init  at 1.0.0
parents 6948768c aba66717
Loading
Loading
Loading
Loading
+30 −0
Original line number Diff line number Diff line
{ lib, stdenv, fetchFromSourcehut, nixos, wayland, pixman, pkg-config }:

stdenv.mkDerivation rec {
  pname = "river-tag-overlay";
  version = "1.0.0";

  src = fetchFromSourcehut {
    owner = "~leon_plickat";
    repo = pname;
    rev = "v${version}";
    hash = "sha256-hLyXdLi/ldvwPJ1oQQsH5wgflQJuXu6vhYw/qdKAV9E=";
  };

  buildInputs = [ pixman wayland ];
  nativeBuildInputs = [ pkg-config ];

  makeFlags = [
    "DESTDIR=${placeholder "out"}"
    "PREFIX="
  ];

  meta = with lib; {
    description = "A pop-up showing tag status";
    homepage = "https://sr.ht/~leon_plickat/river-tag-overlay";
    license = licenses.gpl3Only;
    maintainers = with maintainers; [ edrex ];
    platforms = platforms.linux;
    broken = stdenv.isAarch64;
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -31120,6 +31120,8 @@ with pkgs;
  pragha = libsForQt5.callPackage ../applications/audio/pragha { };
  river-tag-overlay = callPackage ../applications/misc/river-tag-overlay { };
  rofi-mpd = callPackage ../applications/audio/rofi-mpd { };
  rofi-bluetooth = callPackage ../applications/misc/rofi-bluetooth { };