Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
44 lines
914 B
Nix
44 lines
914 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromSourcehut,
|
|
wayland,
|
|
wayland-scanner,
|
|
unstableGitUpdater,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "river-bnf";
|
|
version = "0-unstable-2023-10-10";
|
|
|
|
src = fetchFromSourcehut {
|
|
owner = "~leon_plickat";
|
|
repo = "river-bnf";
|
|
rev = "bb8ded380ed5d539777533065b4fd33646ad5603";
|
|
hash = "sha256-rm9Nt3WLgq9QOXzrkYBGp45EALNYFTQGInxfYIN0XcU=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
wayland-scanner
|
|
];
|
|
|
|
buildInputs = [
|
|
wayland.dev
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace Makefile --replace '/usr/local' $out
|
|
'';
|
|
|
|
passthru.updateScript = unstableGitUpdater { };
|
|
|
|
meta = {
|
|
description = "Switch back'n'forth between river tags";
|
|
homepage = "https://git.sr.ht/~leon_plickat/river-bnf";
|
|
license = lib.licenses.gpl3Only;
|
|
maintainers = with lib.maintainers; [ adamcstephens ];
|
|
mainProgram = "river-bnf";
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|