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
36 lines
891 B
Nix
36 lines
891 B
Nix
{
|
|
lib,
|
|
fetchurl,
|
|
stdenvNoCC,
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation (finalAttrs: {
|
|
pname = "sequential";
|
|
version = "2.6.0";
|
|
|
|
buildDate = "2024-09-07.14.59.00";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/chuchusoft/Sequential/releases/download/v${finalAttrs.version}/Sequential.app.${finalAttrs.buildDate}.tar.xz";
|
|
hash = "sha256-tgpzMAHw266UhKo43GIHFCx/SDq/zIJkWz1TPYTeTzI=";
|
|
};
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/Applications/Sequential.app
|
|
cp -R Sequential.app $out/Applications
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = {
|
|
description = "macOS native comic reader and image viewer";
|
|
homepage = "https://github.com/chuchusoft/Sequential";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = with lib.maintainers; [ Enzime ];
|
|
platforms = lib.platforms.darwin;
|
|
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
|
|
};
|
|
})
|