forked from uutils/coreutils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
74 lines (63 loc) · 1.95 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
# spell-checker:ignore bintools gnum gperf ldflags libclang nixpkgs numtide pkgs texinfo
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs";
# <https://github.com/nix-systems/nix-systems>
systems.url = "github:nix-systems/default";
};
outputs = inputs: let
inherit (inputs.nixpkgs) lib legacyPackages;
eachSystem = lib.genAttrs (import inputs.systems);
pkgsFor = legacyPackages;
in {
devShells = eachSystem (
system: let
libselinuxPath = with pkgsFor.${system};
lib.makeLibraryPath [
libselinux
];
libaclPath = with pkgsFor.${system};
lib.makeLibraryPath [
acl
];
build_deps = with pkgsFor.${system}; [
clang
llvmPackages.bintools
rustup
pre-commit
# debugging
gdb
];
gnu_testing_deps = with pkgsFor.${system}; [
autoconf
automake
bison
gnum4
gperf
gettext
texinfo
];
in {
default = pkgsFor.${system}.pkgs.mkShell {
packages = build_deps ++ gnu_testing_deps;
RUSTC_VERSION = "1.82";
LIBCLANG_PATH = pkgsFor.${system}.lib.makeLibraryPath [pkgsFor.${system}.llvmPackages_latest.libclang.lib];
shellHook = ''
export PATH=$PATH:''${CARGO_HOME:-~/.cargo}/bin
export PATH=$PATH:''${RUSTUP_HOME:-~/.rustup}/toolchains/$RUSTC_VERSION-x86_64-unknown-linux-gnu/bin/
'';
SELINUX_INCLUDE_DIR = ''${pkgsFor.${system}.libselinux.dev}/include'';
SELINUX_LIB_DIR = libselinuxPath;
SELINUX_STATIC = "0";
# Necessary to build GNU.
LDFLAGS = ''-L ${libselinuxPath} -L ${libaclPath}'';
# Add precompiled library to rustc search path
RUSTFLAGS = [
''-L ${libselinuxPath}''
''-L ${libaclPath}''
];
};
}
);
};
}