Avoid building the ml
feature on Nix (#3133)
This commit is contained in:
parent
2ae8416791
commit
4469807d5a
5 changed files with 13 additions and 13 deletions
18
flake.lock
18
flake.lock
|
@ -29,11 +29,11 @@
|
||||||
"rust-analyzer-src": "rust-analyzer-src"
|
"rust-analyzer-src": "rust-analyzer-src"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1701238978,
|
"lastModified": 1702362203,
|
||||||
"narHash": "sha256-CL3RjhwV47ZI9oWRpezS2eP0mhiyqpOGb3GBMOcF2w4=",
|
"narHash": "sha256-etsSWZfvmVA9RWqixmoKTf+JLEMtjlOaLxh/tK80ZCg=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "fenix",
|
"repo": "fenix",
|
||||||
"rev": "22e61fab6d93cfce2b9659bb7734762ad6a7cf11",
|
"rev": "7622e4a2d4378861d9e83fc02c1eeb0e084bf3f2",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
@ -76,11 +76,11 @@
|
||||||
},
|
},
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1701248596,
|
"lastModified": 1702283490,
|
||||||
"narHash": "sha256-1kuh7EL3TbjZBHuHAnqMO1Zdo/8+3FsLH4kPMfZfXbg=",
|
"narHash": "sha256-QB/77RvJSDvmaJ9VBAtSingT3x673q3F9VLfOhn2j9A=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "4cc4c0455a1158631382dd9f74b7cf5021e946d0",
|
"rev": "eb48fb87884618b6808a945c9b0561f376996466",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
@ -102,11 +102,11 @@
|
||||||
"rust-analyzer-src": {
|
"rust-analyzer-src": {
|
||||||
"flake": false,
|
"flake": false,
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1701186284,
|
"lastModified": 1702322912,
|
||||||
"narHash": "sha256-euPBY3EmEy7+Jjm2ToRPlSp/qrj0UL9+PRobxVz6+aQ=",
|
"narHash": "sha256-CtQtHdJp6naa5xtMmrkNwZx0aVq4215RtWw5/f7l0zw=",
|
||||||
"owner": "rust-lang",
|
"owner": "rust-lang",
|
||||||
"repo": "rust-analyzer",
|
"repo": "rust-analyzer",
|
||||||
"rev": "c7c582afb57bb802715262d7f1ba73b8a86c1c5a",
|
"rev": "8c3e28e3e2d4f190b633fbd43d689b45b28b5598",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
{
|
{
|
||||||
inherit target;
|
inherit target;
|
||||||
|
|
||||||
features = with util.features; [ default storage-tikv ];
|
features = with util.features; [ storage-mem storage-rocksdb scripting http storage-tikv ];
|
||||||
|
|
||||||
buildSpec = with pkgs; {
|
buildSpec = with pkgs; {
|
||||||
depsBuildBuild = [ clang protobuf perl ];
|
depsBuildBuild = [ clang protobuf perl ];
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
{
|
{
|
||||||
inherit target;
|
inherit target;
|
||||||
|
|
||||||
features = with util.features; [ default storage-tikv ];
|
features = with util.features; [ storage-mem storage-rocksdb scripting http storage-tikv ];
|
||||||
|
|
||||||
buildSpec = with pkgs; {
|
buildSpec = with pkgs; {
|
||||||
depsBuildBuild = [ clang protobuf perl ];
|
depsBuildBuild = [ clang protobuf perl ];
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
{
|
{
|
||||||
inherit target;
|
inherit target;
|
||||||
|
|
||||||
features = with util.features; [ default ];
|
features = with util.features; [ storage-mem storage-rocksdb scripting http ];
|
||||||
|
|
||||||
buildSpec = with pkgs; {
|
buildSpec = with pkgs; {
|
||||||
strictDeps = true;
|
strictDeps = true;
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
inherit target;
|
inherit target;
|
||||||
|
|
||||||
features = with util.features;
|
features = with util.features;
|
||||||
[ default storage-tikv ]
|
[ storage-mem storage-rocksdb scripting http storage-tikv ]
|
||||||
++ pkgs.lib.lists.optional (util.fdbSupported pkgs.fdbPackages)
|
++ pkgs.lib.lists.optional (util.fdbSupported pkgs.fdbPackages)
|
||||||
[ storage-fdb ];
|
[ storage-fdb ];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue