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

river-tag-overlay: init at 1.0.0

authored by Thiago Kenji Okada and committed by GitHub 464de794 6948768c

+32
+30
pkgs/applications/misc/river-tag-overlay/default.nix
··· 1 + { lib, stdenv, fetchFromSourcehut, nixos, wayland, pixman, pkg-config }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "river-tag-overlay"; 5 + version = "1.0.0"; 6 + 7 + src = fetchFromSourcehut { 8 + owner = "~leon_plickat"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + hash = "sha256-hLyXdLi/ldvwPJ1oQQsH5wgflQJuXu6vhYw/qdKAV9E="; 12 + }; 13 + 14 + buildInputs = [ pixman wayland ]; 15 + nativeBuildInputs = [ pkg-config ]; 16 + 17 + makeFlags = [ 18 + "DESTDIR=${placeholder "out"}" 19 + "PREFIX=" 20 + ]; 21 + 22 + meta = with lib; { 23 + description = "A pop-up showing tag status"; 24 + homepage = "https://sr.ht/~leon_plickat/river-tag-overlay"; 25 + license = licenses.gpl3Only; 26 + maintainers = with maintainers; [ edrex ]; 27 + platforms = platforms.linux; 28 + broken = stdenv.isAarch64; 29 + }; 30 + }
+2
pkgs/top-level/all-packages.nix
··· 31120 31120 31121 31121 pragha = libsForQt5.callPackage ../applications/audio/pragha { }; 31122 31122 31123 + river-tag-overlay = callPackage ../applications/misc/river-tag-overlay { }; 31124 + 31123 31125 rofi-mpd = callPackage ../applications/audio/rofi-mpd { }; 31124 31126 31125 31127 rofi-bluetooth = callPackage ../applications/misc/rofi-bluetooth { };