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

river-tag-overlay: init  at 1.0.0
This commit is contained in:
Thiago Kenji Okada 2023-01-24 18:18:50 +00:00 committed by GitHub
commit 464de79400
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,30 @@
{ 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;
};
}

View File

@ -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 { };