chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / ri / river-bnf / package.nix
blobbae48c268483cb61293e8703d9908899690f4bb4
1 { lib
2 , stdenv
3 , fetchFromSourcehut
4 , wayland
5 , wayland-scanner
6 , unstableGitUpdater
7 }:
9 stdenv.mkDerivation rec {
10   pname = "river-bnf";
11   version = "0-unstable-2023-10-10";
13   src = fetchFromSourcehut {
14     owner = "~leon_plickat";
15     repo = pname;
16     rev = "bb8ded380ed5d539777533065b4fd33646ad5603";
17     hash = "sha256-rm9Nt3WLgq9QOXzrkYBGp45EALNYFTQGInxfYIN0XcU=";
18   };
20   nativeBuildInputs = [
21     wayland-scanner
22   ];
24   buildInputs = [
25     wayland.dev
26   ];
28   postPatch = ''
29     substituteInPlace Makefile --replace '/usr/local' $out
30   '';
32   passthru.updateScript = unstableGitUpdater { };
34   meta = {
35     description = "Switch back'n'forth between river tags";
36     homepage = "https://git.sr.ht/~leon_plickat/river-bnf";
37     license = lib.licenses.gpl3Only;
38     maintainers = with lib.maintainers; [ adamcstephens ];
39     mainProgram = "river-bnf";
40     platforms = lib.platforms.linux;
41   };