-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
48 lines (44 loc) · 1.34 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
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs";
futils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, futils } @ inputs:
let
inherit (nixpkgs) lib;
inherit (lib) recursiveUpdate;
inherit (futils.lib) eachDefaultSystem defaultSystems;
nixpkgsFor = lib.genAttrs defaultSystems (system: import nixpkgs {
inherit system;
});
in
(eachDefaultSystem (system:
let
pkgs = nixpkgsFor.${system};
in
{
devShell = pkgs.mkShell {
buildInputs = with pkgs; [
(poetry2nix.mkPoetryEnv {
projectDir = self;
overrides = poetry2nix.overrides.withDefaults (self: super: {
cryptography = super.cryptography.overridePythonAttrs (old: {
CRYPTOGRAPHY_DONT_BUILD_RUST = 1;
propagatedBuildInputs = old.propagatedBuildInputs ++ [ super.setuptools-rust ];
});
enrich = super.enrich.overridePythonAttrs (old: {
propagatedBuildInputs = old.propagatedBuildInputs ++ [ super.toml ];
});
});
})
git
poetry
vault
];
shellHook = ''
export VAULT_ADDR='https://vault.cri.epita.fr:443'
'';
};
}
));
}