forked from trumank/mint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
117 lines (95 loc) · 3.08 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
{
description = "Mint development shell";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
rust-overlay.url = "github:oxalica/rust-overlay";
rust-overlay.inputs.nixpkgs.follows = "nixpkgs";
};
outputs =
{ nixpkgs, rust-overlay, ... }:
let
system = "x86_64-linux";
lib = nixpkgs.lib;
overlays = [ (import rust-overlay) ];
pkgs = import nixpkgs {
inherit system overlays;
};
rustToolchain = (pkgs.rust-bin.fromRustupToolchainFile ./rust-toolchain.toml).override {
extensions = [
"rust-src"
"rust-analyzer"
];
};
rustPlatform = pkgs.makeRustPlatform {
cargo = rustToolchain;
rustc = rustToolchain;
};
mingwPkgs = pkgs.pkgsCross.mingwW64;
mingwCompiler = mingwPkgs.buildPackages.gcc;
mingwRustflags = "-L ${mingwPkgs.windows.pthreads}/lib";
mingwTool = name: "${mingwCompiler}/bin/${mingwCompiler.targetPrefix}${name}";
libs = with pkgs; [
gtk3
libGL
openssl
atk
libxkbcommon
wayland
];
buildTools = with pkgs; [
rustToolchain
pkg-config
mingwCompiler
makeWrapper
];
libraryPath = lib.makeLibraryPath libs;
manifest = lib.importTOML ./Cargo.toml;
packageName = manifest.package.name;
packageVersion = manifest.workspace.package.version;
package = rustPlatform.buildRustPackage {
nativeBuildInputs = buildTools;
buildInputs = libs;
pname = packageName;
version = packageVersion;
src = lib.cleanSource ./.;
verbose = true;
cargoLock = {
lockFile = ./Cargo.lock;
allowBuiltinFetchGit = true;
};
doCheck = false;
preConfigure = ''
export LD_LIBRARY_PATH="${libraryPath}"
export CARGO_TARGET_X86_64_PC_WINDOWS_GNU_RUSTFLAGS="${mingwRustflags}";
'';
postInstall = ''
wrapProgram $out/bin/${packageName} \
--prefix LD_LIBRARY_PATH : "${libraryPath}" \
--prefix XDG_DATA_DIRS : "${pkgs.gtk3}/share/gsettings-schemas/${pkgs.gtk3.name}"
'';
meta = with lib; {
description = "Deep Rock Galactic mod loader and integration";
license = licenses.mit;
homepage = "https://github.com/trumank/mint";
mainProgram = packageName;
};
};
devShell = pkgs.mkShell {
name = "mint";
buildInputs = buildTools ++ libs;
LD_LIBRARY_PATH = libraryPath;
CARGO_TARGET_X86_64_PC_WINDOWS_GNU_RUSTFLAGS = mingwRustflags;
# Necessary for cross compiled build scripts, otherwise it will build as ELF format
# https://docs.rs/cc/latest/cc/#external-configuration-via-environment-variables
CC_x86_64_pc_windows_gnu = mingwTool "cc";
AR_x86_64_pc_windows_gnu = mingwTool "ar";
};
in
{
packages.${system} = {
${packageName} = package;
default = package;
};
devShells.${system}.default = devShell;
};
}