river-tag-overlay: init at 1.0.0

This commit is contained in:
Eric Drechsel 2022-12-10 09:30:42 -08:00
parent b297a88a9f
commit d7c97732d5
2 changed files with 31 additions and 0 deletions

View file

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

View file

@ -30966,6 +30966,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 { };