-
Notifications
You must be signed in to change notification settings - Fork 5
/
flake.nix
79 lines (68 loc) · 1.96 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
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
rust-overlay.url = "github:oxalica/rust-overlay";
systems.url = "github:nix-systems/default-linux";
};
outputs = { self, nixpkgs, rust-overlay, systems, ... }:
let
eachSystem = nixpkgs.lib.genAttrs (import systems);
mkRexoder = { rustPlatform, lib, pkg-config, fuse3, ... }: rustPlatform.buildRustPackage rec {
pname = "redoxer";
version = "0.2.38";
src = builtins.path {
path = ./.;
name = pname;
};
cargoLock.lockFile = ./Cargo.lock;
meta = {
description = "The tool used to build/run Rust programs (and C/C++ programs with zero dependencies) inside of a Redox VM.";
homepage = "https://gitlab.redox-os.org/redox-os/redoxer";
};
nativeBuildInputs = [
pkg-config
];
buildInputs = [
fuse3
];
};
in
{
apps = eachSystem (system: {
default = {
type = "app";
program = "${self.packages.${system}.default}/bin/redoxer";
};
});
packages = eachSystem (system:
let
pkgs = import nixpkgs {
inherit system;
};
in
{
default = pkgs.callPackage mkRexoder { };
});
overlays.default = final: prev: {
redoxer = prev.callPackage mkRexoder { };
};
devShells = eachSystem (system:
let
pkgs = import nixpkgs {
inherit system;
overlays = [ rust-overlay.overlays.default ];
};
rust-toolchain = (pkgs.rust-bin.fromRustupToolchainFile ./rust-toolchain.toml).override {
extensions = [ "rust-src" "rust-analyzer" ];
};
in
{
default = pkgs.mkShell {
packages = with pkgs; [
pkg-config
fuse3
] ++ [ rust-toolchain ];
};
});
};
}