-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathflake.nix
More file actions
138 lines (124 loc) · 3.19 KB
/
flake.nix
File metadata and controls
138 lines (124 loc) · 3.19 KB
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
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
bun2nix = {
url = "github:nix-community/bun2nix";
inputs.nixpkgs.follows = "nixpkgs";
};
systems.url = "github:nix-systems/default";
treefmt-nix.url = "github:numtide/treefmt-nix";
flake-compat = {
url = "github:NixOS/flake-compat";
flake = false;
};
};
outputs =
{
nixpkgs,
...
}@inputs:
with builtins;
with nixpkgs.lib;
let
doubles = import inputs.systems;
forAllSystems = genAttrs doubles;
pkgs_gen =
{ ... }@args:
import nixpkgs (
{
overlays = [ inputs.bun2nix.overlays.default ];
}
// args
);
importBunLock =
{ pkgs, src }:
pkgs.stdenv.mkDerivation {
inherit src;
name = "bun.nix";
nativeBuildInputs = with pkgs; [
bun2nix
];
buildPhase = ''
bun2nix -o bun.nix
'';
installPhase = ''
cp bun.nix $out
'';
};
iloader_gen =
{
pkgs,
tools ? [ ],
specialArgs ? { },
}:
pkgs.rustPlatform.buildRustPackage (
let
src = cleanSource ./.;
json = fromJSON (readFile (src + "/package.json"));
in
final:
{
pname = json.name;
inherit (json) version;
inherit src;
bunDeps = pkgs.bun2nix.fetchBunDeps {
bunNix = importBunLock { inherit pkgs src; };
};
cargoRoot = "src-tauri";
cargoLock.lockFile = src + "/${final.cargoRoot}/Cargo.lock";
buildAndTestSubdir = final.cargoRoot;
dontUseBunBuild = true;
dontUseBunCheck = true;
nativeBuildInputs =
with pkgs;
[
cargo-tauri.hook
bun2nix.hook
pkg-config
jq
moreutils
]
++ optionals pkgs.stdenv.hostPlatform.isLinux [ wrapGAppsHook4 ]
++ tools;
buildInputs = optionals pkgs.stdenv.hostPlatform.isLinux (
with pkgs;
[
glib-networking
openssl
webkitgtk_4_1
]
);
postPatch = ''
jq \
'.plugins.updater.endpoints = [ ]
| .bundle.createUpdaterArtifacts = false' \
${final.cargoRoot}/tauri.conf.json \
| sponge ${final.cargoRoot}/tauri.conf.json
'';
}
// specialArgs
);
in
{
packages = forAllSystems (
system:
let
pkgs = pkgs_gen { inherit system; };
iloader = iloader_gen { inherit pkgs; };
in
{
inherit iloader;
default = iloader;
}
);
formatter = forAllSystems (
system:
let
pkgs = pkgs_gen { inherit system; };
in
inputs.treefmt-nix.lib.mkWrapper pkgs {
programs.nixfmt.enable = true;
}
);
};
}