forked from trans-archive/transky
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
102 lines (87 loc) · 2.73 KB
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
description = "Transky-book's Nix flake";
nixConfig =
{
experimental-features = [ "nix-command" "flakes" ];
substituters = [
# "https://mirrors.cernet.edu.cn/nix-channels/store"
# "https://mirrors.bfsu.edu.cn/nix-channels/store"
"https://cache.nixos.org/"
];
extra-substituters = [
"https://cryolitia.cachix.org"
];
extra-trusted-public-keys = [
"cryolitia.cachix.org-1:/RUeJIs3lEUX4X/oOco/eIcysKZEMxZNjqiMgXVItQ8="
];
};
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
nur-cryolitia = {
url = "github:Cryolitia/nur-packages";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, nur-cryolitia }:
{
packages.x86_64-linux.default =
let
pkgs = import nixpkgs {
system = "x86_64-linux";
overlays = [
(final: prev: {
nur-cryolitia = nur-cryolitia.packages."${prev.system}";
})
];
};
in
pkgs.callPackage (
{ lib
, stdenvNoCC
, calibre
, mdbook
, mdbook-epub
, nur-cryolitia
, source-han-serif
, typst
}:
stdenvNoCC.mkDerivation
rec {
pname = "transky-book";
version = "unstable";
src = lib.cleanSource ./.;
nativeBuildInputs = [
calibre
mdbook
mdbook-epub
nur-cryolitia.mdbook-typst-pdf
source-han-serif
typst
];
buildPhase = ''
runHook preBuild
find src/ -type f -name "*.md" ! -path "src/index.md" -exec \
sed -i "/^---$/,/^---$/d" {} \;
mdbook build
mkdir -p book/mobi
ebook-convert book/epub/药娘的天空.epub book/mobi/药娘的天空.mobi
export TYPST_FONT_PATHS=${source-han-serif}/share/fonts/opentype/source-han-serif
typst compile book/typst-pdf/药娘的天空.typ
runHook postBuild
'';
installPhase = ''
runHook preInstall
mkdir -p $out/share/transky-book
cp -r book $out/share/transky-book/
runHook postInstall
'';
meta = with lib; {
description = "药娘的天空";
homepage = "https://github.com/transky-book/transky";
license = licenses.cc-by-nc-sa-40;
maintainers = with maintainers; [ Cryolitia ];
};
}
) {};
};
}