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
68 lines
1.3 KiB
Nix
68 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
ocamlPackages,
|
|
fetchFromGitHub,
|
|
versionCheckHook,
|
|
nixosTests,
|
|
nix-update-script,
|
|
}:
|
|
|
|
ocamlPackages.buildDunePackage rec {
|
|
pname = "slipshow";
|
|
version = "0.6.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "panglesd";
|
|
repo = "slipshow";
|
|
tag = "v${version}";
|
|
hash = "sha256-cmBq9RYjvl355+tV+Nf7XmDzgbOqusCjVrqoC34R5CI=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace ./src/cli/main.ml \
|
|
--replace-fail '%%VERSION%%' '${version}'
|
|
'';
|
|
|
|
nativeBuildInputs = with ocamlPackages; [
|
|
js_of_ocaml
|
|
];
|
|
|
|
buildInputs = with ocamlPackages; [
|
|
base64
|
|
bos
|
|
cmdliner
|
|
dream
|
|
fmt
|
|
fpath
|
|
irmin-watcher
|
|
js_of_ocaml-lwt
|
|
logs
|
|
lwt
|
|
magic-mime
|
|
ppx_blob
|
|
ppx_sexp_value
|
|
sexplib
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
nativeCheckInputs = [ versionCheckHook ];
|
|
versionCheckProgramArg = "--version";
|
|
doInstallCheck = true;
|
|
|
|
passthru = {
|
|
tests = { inherit (nixosTests) slipshow; };
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
meta = {
|
|
description = "Engine for displaying slips, the next-gen version of slides";
|
|
homepage = "https://slipshow.readthedocs.io/en/latest/index.html";
|
|
license = lib.licenses.gpl3Only;
|
|
downloadPage = "https://github.com/panglesd/slipshow";
|
|
maintainers = [ lib.maintainers.ethancedwards8 ];
|
|
teams = [ lib.teams.ngi ];
|
|
mainProgram = "slipshow";
|
|
};
|
|
}
|