Skip to content

Commit 292fa7d

Browse files
authored
sequential: init at 2.6.0 (#405429)
2 parents ad7b062 + 6983559 commit 292fa7d

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
lib,
3+
fetchurl,
4+
stdenvNoCC,
5+
}:
6+
7+
stdenvNoCC.mkDerivation (finalAttrs: {
8+
pname = "sequential";
9+
version = "2.6.0";
10+
11+
buildDate = "2024-09-07.14.59.00";
12+
13+
src = fetchurl {
14+
url = "https://github.com/chuchusoft/Sequential/releases/download/v${finalAttrs.version}/Sequential.app.${finalAttrs.buildDate}.tar.xz";
15+
hash = "sha256-tgpzMAHw266UhKo43GIHFCx/SDq/zIJkWz1TPYTeTzI=";
16+
};
17+
18+
installPhase = ''
19+
runHook preInstall
20+
21+
mkdir -p $out/Applications/Sequential.app
22+
cp -R Sequential.app $out/Applications
23+
24+
runHook postInstall
25+
'';
26+
27+
meta = {
28+
description = "macOS native comic reader and image viewer";
29+
homepage = "https://github.com/chuchusoft/Sequential";
30+
license = lib.licenses.bsd3;
31+
maintainers = with lib.maintainers; [ Enzime ];
32+
platforms = lib.platforms.darwin;
33+
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
34+
};
35+
})

0 commit comments

Comments
 (0)