forked from emacs-ng/emacs-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
336 lines (309 loc) · 12 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
{
description = "emacsNg Nix flake";
inputs = {
nixpkgs.url = "nixpkgs/67bbabc0a471ec286cf63f3424c91eb8b31d9000";
emacs-overlay = {
type = "github";
owner = "nix-community";
repo = "emacs-overlay";
};
master.url = "nixpkgs/7d71001b796340b219d1bfa8552c81995017544a";
devshell-flake.url = "github:numtide/devshell";
emacsNg-src = { url = "github:emacs-ng/emacs-ng"; flake = false; };
flake-compat = { url = "github:edolstra/flake-compat"; flake = false; };
rust-overlay = { url = "github:oxalica/rust-overlay"; inputs.nixpkgs.follows = "nixpkgs"; };
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, master, emacs-overlay, emacsNg-src, flake-compat, rust-overlay, flake-utils, devshell-flake }:
{ }
//
(flake-utils.lib.eachSystem [ "x86_64-linux" "x86_64-darwin" ]
(system:
let
unstable = final: prev: {
inherit ((import master) { inherit system; })
rustracer;
};
pkgs = import nixpkgs {
inherit system;
overlays = [
self.overlay
emacs-overlay.overlay
rust-overlay.overlay
devshell-flake.overlay
unstable
];
config = { };
};
in
rec {
devShell = with pkgs; let
custom-llvmPackages = llvmPackages_10;
in
devshell.mkShell {
imports = [
./nix/rust.nix
(devshell.importTOML ./nix/commands.toml)
];
packages = [
custom-llvmPackages.clang
];
env = [
{
name = "LIBCLANG_PATH";
value = "${custom-llvmPackages.libclang}/lib";
}
{
name = "CACHIX_AUTH_TOKEN";
value =
let
pwd = builtins.getEnv "PWD";
key = pwd + "/nix/cachix-key.secrets";
in
if lib.pathExists key then
lib.removeSuffix "\n" (builtins.readFile key) else "";
}
];
commands = with pkgs; [
{
name = "copy-deps";
command = ''
cp -rf --no-preserve=mode,ownership ${emacsNg-rust}/.cargo/ $@
'';
help = ''
copy emacsNg rust deps path to where
'';
}
];
};
apps = {
emacsNg = flake-utils.lib.mkApp { drv = packages.emacsNg; exePath = "/bin/emacs"; };
};
defaultApp = apps.emacsNg;
defaultPackage = pkgs.emacsNg;
packages = flake-utils.lib.flattenTree
{
inherit (pkgs)
emacsNg-rust
emacsNg
;
};
hydraJobs = {
inherit packages;
};
}
)
)
// {
overlay = final: prev:
let
emacsNgSource = emacsNg-src;
#emacsNgSource = ./.;
#rust nightly date
locked-date = prev.lib.removePrefix "nightly-" (prev.lib.removeSuffix "\n" (builtins.readFile ./rust-toolchain));
in
{
emacsNg-rust = with final;
(
let
installPhase = ''
tar --owner=0 --group=0 --numeric-owner --format=gnu \
--sort=name --mtime="@$SOURCE_DATE_EPOCH" \
-czf $out $name-versioned
'';
doVersionedUpdate = ''
cargo vendor --versioned-dirs $name-versioned
'';
remacsLibDeps = prev.rustPlatform.fetchCargoTarball {
src = emacsNgSource + /rust_src/remacs-lib;
name = "remacsLibDeps";
cargoUpdateHook =
let
pathDir = emacsNgSource + /rust_src/crates;
in
''
cp -r ${pathDir} /build/crates
'' + doVersionedUpdate;
sha256 = "sha256-W/A3mYNBLZrcjL9ehXe6ndjv/bMiUdRDTylAM9hLeoo=";
inherit installPhase;
};
remacsBindings = prev.rustPlatform.fetchCargoTarball {
src = emacsNgSource + "/rust_src/remacs-bindings";
sourceRoot = null;
cargoUpdateHook = doVersionedUpdate;
name = "remacsBindings";
sha256 = "sha256-537/sJVxRe9qIGrmzrkKU7INdEXR0hGRBYatlz+aXms=";
inherit installPhase;
};
remacsSrc = prev.rustPlatform.fetchCargoTarball {
src = emacsNgSource + "/rust_src";
cargoUpdateHook = ''
sed -e 's/@CARGO_.*@//' Cargo.toml.in > Cargo.toml
'' + doVersionedUpdate;
name = "remacsSrc";
sha256 = "sha256-d8Fvg+FrYNVTZAU/QRyvSPuSXbqncg3LaEOWeZzSa8Q=";
inherit installPhase;
};
remacsHashdir = prev.rustPlatform.fetchCargoTarball {
src = emacsNgSource + "/lib-src/hashdir";
sourceRoot = null;
name = "remacsHashdir";
cargoUpdateHook = doVersionedUpdate;
sha256 = "sha256-UseR96MO9J+g/G+MUTkoxF95Y4r53xbY/5iBNyJajgA=";
inherit installPhase;
};
in
stdenv.mkDerivation {
name = "emacsNg-rust";
srcs = [
remacsLibDeps
remacsBindings
remacsHashdir
remacsSrc
];
sourceRoot = ".";
phases = [ "unpackPhase" "installPhase" ];
installPhase = ''
mkdir -p $out/.cargo/registry
cat > $out/.cargo/config.toml << EOF
[source.crates-io]
registry = "https://github.com/rust-lang/crates.io-index"
replace-with = "vendored-sources"
[source.vendored-sources]
directory = "$out/.cargo/registry"
EOF
cp -R remacsLibDeps-vendor.tar.gz-versioned/* $out/.cargo/registry
cp -R remacsBindings-vendor.tar.gz-versioned/* $out/.cargo/registry
cp -R remacsHashdir-vendor.tar.gz-versioned/* $out/.cargo/registry
cp -R remacsSrc-vendor.tar.gz-versioned/* $out/.cargo/registry
'';
}
);
librusty_v8 = prev.callPackage ./nix/librusty_v8.nix { };
emacsNg = with prev; let
withWebreader = false;
in
(
final.emacsGcc.override
({
withImageMagick = true;
imagemagick = prev.imagemagick;
})
).overrideAttrs
(old:
let
custom-llvmPackages = prev.llvmPackages_10;
#withGLX
rpathLibs =
(with xorg; lib.optionals (stdenv.isLinux && withWebreader) [
libX11
libGLU
libGL
libXpm
libXext
libXxf86vm
alsaLib
libxkbcommon
wayland
libxcb
]);
in
rec {
name = "emacsNg-" + version;
src = emacsNgSource;
version = builtins.substring 0 7 emacsNgSource.rev;
#version = "develop";
preConfigure = (old.preConfigure or "") + ''
'' + lib.optionalString withWebreader ''
export NIX_CFLAGS_LINK="$NIX_CFLAGS_LINK -lxcb-render -lxcb-xfixes -lxcb-shape"
'';
patches = (old.patches or [ ]) ++ [
];
makeFlags =
(old.makeFlags or [ ]) ++ [
"CARGO_FLAGS=--offline" #nightly channel
];
#custom configure Flags Setting
configureFlags = (if withWebreader then
lib.subtractLists [
"--with-x-toolkit=gtk3"
"--with-xft"
"--with-harfbuzz"
"--with-cairo"
"--with-imagemagick"
]
old.configureFlags else
old.configureFlags) ++ [
"--with-json"
"--with-threads"
"--with-included-regex"
"--with-compress-install"
"--with-zlib"
"--with-dumping=pdumper"
] ++ lib.optionals withWebreader [
"--with-webrender"
] ++ lib.optionals (! withWebreader) [
"--with-harfbuzz"
] ++ lib.optionals stdenv.isLinux [
"--with-dbus"
];
preBuild =
let arch = rust.toRustTarget stdenv.hostPlatform;
in
(old.preBuild or "") + ''
_librusty_v8_setup() {
for v in "$@"; do
install -D ${final.librusty_v8} "rust_src/target/$v/gn_out/obj/librusty_v8.a"
done
}
_librusty_v8_setup "debug" "release" "${arch}/release"
sed -i 's|deno = { git = "https://github.com/DavidDeSimone/deno", branch = "emacs-ng"|deno = { version = "1.9.2"|' rust_src/Cargo.toml
sed -i 's|deno_runtime = { git = "https://github.com/DavidDeSimone/deno", branch = "emacs-ng"|deno_runtime = { version = "0.13.0"|' rust_src/Cargo.toml
sed -i 's|deno_core = { git = "https://github.com/DavidDeSimone/deno"|deno_core = { version = "0.86.0"|' rust_src/Cargo.toml
export HOME=${final.emacsNg-rust}
'';
postPatch = (old.postPatch or "") + ''
pwd="$(type -P pwd)"
substituteInPlace Makefile.in --replace "/bin/pwd" "$pwd"
substituteInPlace lib-src/Makefile.in --replace "/bin/pwd" "$pwd"
'';
LIBCLANG_PATH = "${custom-llvmPackages.libclang}/lib";
RUST_BACKTRACE = "full";
buildInputs = (old.buildInputs or [ ]) ++
[
custom-llvmPackages.clang
custom-llvmPackages.libclang
final.rust-bin.nightly."${locked-date}".default
] ++ lib.optionals withWebreader (with xorg;[
python3
rpathLibs
]) ++ lib.optionals
stdenv.isDarwin
(with darwin.apple_sdk.frameworks; with darwin; [
libobjc
Security
CoreServices
Metal
Foundation
libiconv
] ++ lib.optionals (withWebreader && stdenv.isDarwin) [
AppKit
CoreGraphics
CoreServices
CoreText
Foundation
OpenGL
]);
postFixup = (old.postFixup or "") + (if withWebreader then
lib.concatStringsSep "\n" [
(lib.optionalString stdenv.isLinux ''
patchelf --set-rpath \
"$(patchelf --print-rpath "$out/bin/.emacs-28.0.50-wrapped"):${lib.makeLibraryPath rpathLibs}" \
"$out/bin/.emacs-28.0.50-wrapped"
patchelf --add-needed "libfontconfig.so" "$out/bin/.emacs-28.0.50-wrapped"
'')
] else "");
});
};
};
}