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
70 lines
1.4 KiB
Nix
70 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchgit,
|
|
makeWrapper,
|
|
surf,
|
|
wmctrl,
|
|
matchbox,
|
|
xdotool,
|
|
unclutter,
|
|
xorg,
|
|
pulseaudio,
|
|
xprintidle-ng,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "surf-display";
|
|
version = "unstable-2022-10-07";
|
|
|
|
src = fetchgit {
|
|
url = "https://code.it-zukunft-schule.de/cgit/surf-display";
|
|
rev = "ad0bd30642f8334d42bb08ea5c1b9dd03fccc4d1";
|
|
hash = "sha256-wiyFh1te3afASIODn0cA5QXcqnrP/8Bk6hBAZYbKJQQ=";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
buildInputs = [
|
|
surf
|
|
wmctrl
|
|
matchbox
|
|
pulseaudio
|
|
xprintidle-ng
|
|
xdotool
|
|
xorg.xmodmap
|
|
xorg.xkbutils
|
|
unclutter
|
|
];
|
|
|
|
patches = [ ./pdf-makefile.patch ];
|
|
|
|
buildFlags = [ "man" ];
|
|
|
|
postFixup = ''
|
|
substituteInPlace $out/share/xsessions/surf-display.desktop \
|
|
--replace surf-display $out/bin/surf-display
|
|
|
|
substituteInPlace $out/bin/surf-display --replace /usr/share $out/share
|
|
|
|
patchShebangs $out/bin/surf-display
|
|
wrapProgram $out/bin/surf-display \
|
|
--prefix PATH ':' ${lib.makeBinPath buildInputs}
|
|
'';
|
|
|
|
makeFlags = [ "PREFIX=${placeholder "out"}" ];
|
|
|
|
passthru = {
|
|
providedSessions = [ "surf-display" ];
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Kiosk browser session manager based on the surf browser";
|
|
mainProgram = "surf-display";
|
|
homepage = "https://code.it-zukunft-schule.de/cgit/surf-display/";
|
|
maintainers = [ ];
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|