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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
|
--!A cross-platform build utility based on Lua
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
-- Copyright (C) 2015-present, Xmake Open Source Community.
--
-- @author ZZBaron
-- @file find_package.lua
--
--imports
import("core.base.option")
import("lib.detect.find_tool")
import("private.core.base.is_cross")
import("package.manager.pkgconfig.find_package", {alias = "find_package_from_pkgconfig"})
import("core.cache.globalcache")
import("core.cache.memcache")
import("core.base.json")
import("core.base.object")
import("core.base.semver")
-- cache keys
local STORE_PATHS_CACHE = "nix_store_paths"
local PACKAGE_INFO_CACHE = "nix_package_info"
local PROPAGATED_CACHE = "nix_propagated"
local PKGCONFIG_CACHE = "nix_pkgconfig"
local DERIVATION_CACHE = "nix_derivation_info"
-- get nix cache instance
local function get_nix_cache()
return globalcache.cache("nix_packages")
end
-- get memory cache for current session
local function get_memory_cache()
return memcache.cache("nix_session")
end
-- check if we're in a nix shell
local function is_in_nix_shell()
local in_nix_shell = os.getenv("IN_NIX_SHELL")
return in_nix_shell == "pure" or in_nix_shell == "impure"
end
-- generate cache key for environment state
local function generate_env_cache_key()
local env_vars = {
"buildInputs",
"nativeBuildInputs",
"propagatedBuildInputs",
"propagatedNativeBuildInputs"
}
local env_data = {}
for _, var in ipairs(env_vars) do
env_data[var] = os.getenv(var) or ""
end
-- Include nix shell state and user
env_data.in_nix_shell = tostring(is_in_nix_shell())
env_data.user = os.getenv("USER") or "unknown"
-- Create a hash-like key from the environment
local key_parts = {}
for k, v in table.orderpairs(env_data) do
table.insert(key_parts, k .. "=" .. v)
end
return table.concat(key_parts, "|")
end
-- extract package information from store path using derivation data
local function extract_package_info_from_path(store_path, opt)
local cache = get_nix_cache()
local memory_cache = get_memory_cache()
-- Check caches first
local cached = memory_cache:get2(DERIVATION_CACHE, store_path)
if cached then
if opt and (opt.verbose or option.get("verbose")) then
print("Nix: Using session cached derivation info for: " .. store_path)
end
return cached.name, cached.version, cached.outputs, cached.current_output
end
cached = cache:get2(DERIVATION_CACHE, store_path)
if cached then
if opt and (opt.verbose or option.get("verbose")) then
print("Nix: Using persistent cached derivation info for: " .. store_path)
end
memory_cache:set2(DERIVATION_CACHE, store_path, cached)
return cached.name, cached.version, cached.outputs, cached.current_output
end
-- Find required tools
local nix_store = find_tool("nix-store")
local nix = find_tool("nix")
if not nix_store or not nix then
if opt and (opt.verbose or option.get("verbose")) then
local missing = {}
if not nix_store then table.insert(missing, "nix-store") end
if not nix then table.insert(missing, "nix") end
if opt and (opt.verbose or option.get("verbose")) then
print("Nix: Required tools not found: " .. table.concat(missing, ", "))
end
end
return nil
end
-- Get the derivation path
local drv_output = try {function()
local outdata = os.iorunv(nix_store.program, {"--query", "--valid-derivers", store_path}) -- not "--deriver" because:
-- The returned deriver is not guaranteed to exist in the local store, for example when paths were substituted from a binary cache.
-- Ref: https://nix.dev/manual/nix/latest/command-ref/nix-store/query.html
if outdata then
return outdata:trim()
end
return outdata
end}
if not drv_output or drv_output == "" then
if opt and (opt.verbose or option.get("verbose")) then
print("Nix: Could not get derivation for: " .. store_path)
end
return nil
end
-- drv_output is a list of derivations
local derivations = {}
for drv_path in drv_output:gmatch("(%S+)") do
if drv_path:match("%.drv$") then
table.insert(derivations, drv_path)
end
end
if #derivations == 0 then
if opt and (opt.verbose or option.get("verbose")) then
print("Nix: No valid derivation paths found for: " .. store_path)
end
return nil
end
-- Try each derivation until we find one that works
local derivation_json = nil
for _, drv_path in ipairs(derivations) do
derivation_json = try {function()
local outdata = os.iorunv(nix.program, {
"derivation", "show",
drv_path,
"--extra-experimental-features", "nix-command flakes"
})
if outdata then
return outdata:trim()
end
return outdata
end}
if derivation_json and derivation_json ~= "" then
if opt and (opt.verbose or option.get("verbose")) then
print("Nix: Using derivation: " .. drv_path)
end
break
end
end
if not derivation_json or derivation_json == "" then
if opt and (opt.verbose or option.get("verbose")) then
print("Nix: Could not show derivation for: " .. drv_output)
end
return nil
end
-- Parse the JSON output
local derivation_data = json.decode(derivation_json)
if not derivation_data then
if opt and (opt.verbose or option.get("verbose")) then
print("Nix: Failed to parse derivation JSON")
end
return nil
end
-- Extract the derivation info (should be a single key-value pair)
local drv_info = nil
for _, info in pairs(derivation_data) do
drv_info = info
break
end
if not drv_info and opt and (opt.verbose or option.get("verbose")) then
print("Nix: No derivation info found in JSON")
end
-- Extract package information
-- structureAttrs vs env:
-- not every nix package has structureAttrs, so we fallback to env
-- Ref: https://nix.dev/manual/nix/latest/language/advanced-attributes.html
local package_name = (drv_info.structuredAttrs and drv_info.structuredAttrs.pname) or (drv_info.env and drv_info.env.pname) or nil
-- not just "name" as that includes version
local version = (drv_info.structuredAttrs and drv_info.structuredAttrs.version) or (drv_info.env and drv_info.env.version) or nil
local outputs = drv_info.outputs or {}
if not package_name then
if opt and (opt.verbose or option.get("verbose")) then
print("Nix: No pname found in derivation: " .. drv_output)
end
return nil
end
-- Create outputs map (output_name -> store_path)
local output_paths = {}
for output_name, output_info in pairs(outputs) do
if output_info.path then
output_paths[output_name] = output_info.path
end
end
-- Determine which output this store_path represents
local current_output = nil
for output_name, output_path in pairs(output_paths) do
if output_path == store_path then
current_output = output_name
break
end
end
-- Cache the result
local result = {
name = package_name,
version = version,
outputs = output_paths,
current_output = current_output
}
cache:set2(DERIVATION_CACHE, store_path, result)
memory_cache:set2(DERIVATION_CACHE, store_path, result)
if opt and (opt.verbose or option.get("verbose")) then
print("Nix: Extracted derivation info for " .. package_name .. " (version: " .. (version or "unknown") .. ")")
end
return package_name, version, output_paths, current_output
end
-- package info data
local package_info = object {_init = {"name", "version"}}
function package_info:new(name, version)
self._name = name
self._version = version
self._includedirs = {}
self._bindirs = {}
self._linkdirs = {}
self._links = {}
self._libfiles = {}
self._store_paths = {}
self._outputs = {}
self._pkgconfig_available = false
return package_info {self, name, version}
end
function package_info:add_store_path(p, output_name)
table.insert(self._store_paths, p)
if output_name then
self._outputs[output_name] = p
end
end
function package_info:add_includedir(d)
table.insert(self._includedirs, d)
end
function package_info:add_bindir(d)
table.insert(self._bindirs, d)
end
function package_info:add_linkdir(d)
table.insert(self._linkdirs, d)
end
function package_info:add_link(l)
table.insert(self._links, l)
end
function package_info:add_libfile(f)
table.insert(self._libfiles, f)
end
function package_info:set_pkgconfig_available()
self._pkgconfig_available = true
end
function package_info:finalize()
-- remove duplicates
self._includedirs = table.unique(self._includedirs)
self._bindirs = table.unique(self._bindirs)
self._linkdirs = table.unique(self._linkdirs)
self._links = table.unique(self._links)
self._libfiles = table.unique(self._libfiles)
self._store_paths = table.unique(self._store_paths)
-- return plain table (so cache stores normal table)
return {
name = self._name,
includedirs = self._includedirs,
bindirs = self._bindirs,
linkdirs = self._linkdirs,
links = self._links,
libfiles = self._libfiles,
store_paths = self._store_paths,
outputs = self._outputs,
version = self._version,
pkgconfig_available = self._pkgconfig_available
}
end
-- follow propagated build inputs recursively with caching
local function follow_propagated_inputs(store_paths, opt)
local cache = get_nix_cache()
local visited = {}
-- Add initial paths
local all_paths = table.unique(store_paths)
local i = 1
while i <= #all_paths do
local store_path = all_paths[i]
if not visited[store_path] then
visited[store_path] = true
-- Check cache first
local cached_props = cache:get2(PROPAGATED_CACHE, store_path)
local prop_paths
if cached_props then
prop_paths = cached_props
if opt and (opt.verbose or option.get("verbose")) then
print("Nix: Using cached propagated inputs for: " .. store_path)
end
else
-- Read from filesystem
prop_paths = {}
local prop_file = path.join(store_path, "nix-support", "propagated-build-inputs")
if os.isfile(prop_file) then
local content = try {function()
return io.readfile(prop_file):trim()
end}
if content and content ~= "" then
for prop_path in content:gmatch("%S+") do
if prop_path:startswith("/nix/store/") then
table.insert(prop_paths, prop_path)
end
end
end
end
-- Cache the result
cache:set2(PROPAGATED_CACHE, store_path, prop_paths)
if opt and (opt.verbose or option.get("verbose")) then
print("Nix: Cached propagated inputs for: " .. store_path)
end
end
-- Add new paths
for _, prop_path in ipairs(prop_paths) do
table.insert(all_paths, prop_path)
if opt and (opt.verbose or option.get("verbose")) then
print("Nix: Added propagated: " .. prop_path)
end
end
end
i = i + 1
end
return table.unique(all_paths)
end
-- get store paths from nix command output
local function get_store_paths_from_command(command, args, opt)
local output = try {function()
local outdata = os.iorunv(command, args)
if outdata then
return outdata:trim()
end
return outdata
end}
if not output then
return {}
end
local store_paths = {}
for line in output:gmatch("[^\n]+") do
local store_path = line:match("(/nix/store/[^%s]+)")
if store_path then
table.insert(store_paths, store_path)
end
end
return follow_propagated_inputs(store_paths, opt)
end
-- parse store paths from environment variables with caching
local function parse_store_paths_from_env(env_vars, opt)
local cache_key = generate_env_cache_key()
local memory_cache = get_memory_cache()
-- Check memory cache first (session cache)
local cached_paths = memory_cache:get2(STORE_PATHS_CACHE, cache_key)
if cached_paths then
return cached_paths
end
-- Check persistent cache
local cache = get_nix_cache()
cached_paths = cache:get2(STORE_PATHS_CACHE, cache_key)
if cached_paths then
-- Also cache in memory for faster access
memory_cache:set2(STORE_PATHS_CACHE, cache_key, cached_paths)
memory_cache:set("last_env_key", cache_key)
return cached_paths
end
-- Parse from environment
local paths = {}
local seen = {}
if opt and (opt.verbose or option.get("verbose")) then
print("Nix: Parsing store paths from environment variables")
end
for _, var_name in ipairs(env_vars) do
local env_value = os.getenv(var_name) or ""
if env_value ~= "" then
for item in env_value:gmatch("[^%s:]+") do
if item:startswith("/nix/store/") then
local store_path = item:match("(/nix/store/[^/]+)")
if store_path and not seen[store_path] then
seen[store_path] = true
table.insert(paths, store_path)
if opt and (opt.verbose or option.get("verbose")) then
print("Nix: Found store path: " .. store_path)
end
end
end
end
end
end
-- Follow propagated inputs
paths = follow_propagated_inputs(paths, opt)
-- Cache the result
cache:set2(STORE_PATHS_CACHE, cache_key, paths)
memory_cache:set2(STORE_PATHS_CACHE, cache_key, paths)
memory_cache:set("last_env_key", cache_key)
cache:save()
if opt and (opt.verbose or option.get("verbose")) then
print("Nix: Cached " .. #paths .. " store paths")
end
return paths
end
-- STORE PATH EXTRACTION FUNCTIONS
-- extract store paths from nix shell
local function get_store_paths_nix_shell(opt)
if not is_in_nix_shell() then
return {}
end
local build_env_vars = {
"buildInputs",
"nativeBuildInputs",
"propagatedBuildInputs",
"propagatedNativeBuildInputs"
}
return parse_store_paths_from_env(build_env_vars, opt)
end
-- Find package from current user's nix profile, includes nix-env installed packages
-- Note: nix-env only lists one output in the profile list
-- $ nix-env -iA nixpkgs.<package> # installs multiple outputs, but only one is listed in the profile
-- this can cause issues if the main output does not contain the necessary files
-- Example: zlib.dev contains the headers, but zlib only contains the library
-- there does not seem to be an straight-forward way to find all outputs...
-- It is better to use nix profile like:
-- $ nix profile install 'nixpkgs#zlib^*'' # installs all outputs
-- $ nix profile install 'nixpkgs#zlib^dev' # installs only the dev output
local function get_store_paths_nix_profile(opt)
local nix = find_tool("nix")
if not nix then
return {}
end
return get_store_paths_from_command(
nix.program,
{"profile", "list", "--extra-experimental-features", "nix-command flakes"},
opt
)
end
-- Popular nix-community tool to declaratively manage user environments (NixOS and non-NixOS)
local function get_store_paths_home_manager_tool(opt)
local home_manager = find_tool("home-manager")
if not home_manager then
return {}
end
return get_store_paths_from_command(
home_manager.program,
{"packages"},
opt
)
end
-- Home manager can be installed as a module in nixos, in which case the home-manager tool is missing.
local function get_store_paths_home_manager_profile(opt)
local nix_store = find_tool("nix-store")
if not nix_store then
return {}
end
local user = os.getenv("USER") or "unknown"
local user_profile = "/etc/profiles/per-user/" .. user
if not os.isdir(user_profile) then
return {}
end
return get_store_paths_from_command(
nix_store.program,
{"--query", "--requisites", user_profile},
opt
)
end
-- nixos-option is not always configured properly, but if it is, we can find user/system packages
local function get_store_paths_nixos_user_packages(opt)
local nixos_option = find_tool("nixos-option")
if not nixos_option then
return {}
end
local user = os.getenv("USER") or "unknown"
local output = try {function()
local outdata = os.iorunv(nixos_option.program, {"users.users." .. user .. ".packages"})
if outdata then
return outdata:trim()
end
return outdata
end}
if output then
local store_paths = {}
for store_path in output:gmatch('(/nix/store/[^"\'%s]+)') do
table.insert(store_paths, store_path)
end
return follow_propagated_inputs(store_paths, opt)
end
return {}
end
-- extract store paths from nixos system packages
local function get_store_paths_nixos_system_packages(opt)
local nixos_option = find_tool("nixos-option")
if not nixos_option then
return {}
end
local output = try {function()
local outdata = os.iorunv(nixos_option.program, {"environment.systemPackages"})
if outdata then
return outdata:trim()
end
return outdata
end}
if output then
local store_paths = {}
for store_path in output:gmatch('(/nix/store/[^"\'%s]+)') do
table.insert(store_paths, store_path)
end
return follow_propagated_inputs(store_paths, opt)
end
return {}
end
-- Includes all system/user/home-manager packages
local function get_store_paths_nixos_current_system(opt)
local nix_store = find_tool("nix-store")
if not nix_store then
return {}
end
if not os.isdir("/run/current-system") then
return {}
end
return get_store_paths_from_command(
nix_store.program,
{"--query", "--requisites", "/run/current-system"},
opt
)
end
-- get all store paths from all nix environments with caching
local function get_all_store_paths(opt)
local cache = get_nix_cache()
local memory_cache = get_memory_cache()
local cache_key = "all_environments:" .. generate_env_cache_key()
-- Check memory cache first
local cached_paths = memory_cache:get2(STORE_PATHS_CACHE, cache_key)
if cached_paths then
return cached_paths
end
-- Check persistent cache
cached_paths = cache:get2(STORE_PATHS_CACHE, cache_key)
if cached_paths then
memory_cache:set2(STORE_PATHS_CACHE, cache_key, cached_paths)
return cached_paths
end
-- Extract from all sources
local all_paths = {}
local seen = {}
local get_store_path_functions = {
get_store_paths_nix_shell,
get_store_paths_nix_profile,
get_store_paths_home_manager_tool,
get_store_paths_home_manager_profile,
get_store_paths_nixos_user_packages,
get_store_paths_nixos_system_packages,
get_store_paths_nixos_current_system
}
for _, func in ipairs(get_store_path_functions) do
local paths = func(opt)
for _, store_path in ipairs(paths) do
if not seen[store_path] then
seen[store_path] = true
table.insert(all_paths, store_path)
end
end
end
-- Cache the result
cache:set2(STORE_PATHS_CACHE, cache_key, all_paths)
memory_cache:set2(STORE_PATHS_CACHE, cache_key, all_paths)
cache:save()
if opt and (opt.verbose or option.get("verbose")) then
print("Nix: Found " .. #all_paths .. " total store paths across all environments")
end
return all_paths
end
-- check if store path has the package name (substring search)
local function path_matches_package(store_path, package_name)
local path_name_lower = path.basename(store_path):lower()
local package_name_lower = package_name:lower()
return path_name_lower:find(package_name_lower, 1, true) ~= nil
end
local function group_paths_by_version(store_paths, package_name, opt)
local version_groups = {} -- { "package:version" -> [store_paths] }
for _, store_path in ipairs(store_paths) do
if not store_path or store_path == "" then goto continue end
-- Extract package info
local parsed_name, parsed_version, output_paths, current_output = extract_package_info_from_path(store_path, opt)
if not parsed_name then
goto continue
end
-- Only include matching package names (if filtering)
if package_name then
local name_matches = parsed_name:lower() == package_name:lower()
if not name_matches then
goto continue
end
end
-- Create version key
local version_key = parsed_name .. ":" .. (parsed_version or "unknown")
if not version_groups[version_key] then
version_groups[version_key] = {
name = parsed_name,
version = parsed_version,
paths = {}
}
end
table.insert(version_groups[version_key].paths, {
path = store_path,
outputs = output_paths,
current_output = current_output
})
::continue::
end
return version_groups
end
-- extract package information from store paths with caching
local function extract_package_info(store_paths, package_name, opt)
opt = opt or {}
local cache = get_nix_cache()
local memory_cache = get_memory_cache()
local paths_key = table.concat(store_paths or {}, ";")
local cache_key = "package_info:" .. (package_name or "all") .. ":" .. paths_key
-- Check memory cache first
local cached = memory_cache:get2(PACKAGE_INFO_CACHE, cache_key)
if cached ~= nil then
return cached
end
-- Check persistent cache
cached = cache:get2(PACKAGE_INFO_CACHE, cache_key)
if cached ~= nil then
memory_cache:set2(PACKAGE_INFO_CACHE, cache_key, cached)
return cached
end
if not store_paths or #store_paths == 0 then
local empty = {}
cache:set2(PACKAGE_INFO_CACHE, cache_key, empty)
memory_cache:set2(PACKAGE_INFO_CACHE, cache_key, empty)
return empty
end
-- Filter store paths if package_name is provided
local filtered_paths = store_paths
if package_name then
filtered_paths = {}
local seen = {}
-- First, find direct matches
for _, store_path in ipairs(store_paths) do
if path_matches_package(store_path, package_name) and not seen[store_path] then
seen[store_path] = true
table.insert(filtered_paths, store_path)
end
end
-- Then find their dependencies
local all_deps = follow_propagated_inputs(filtered_paths, opt)
filtered_paths = table.unique(all_deps)
if opt and (opt.verbose or option.get("verbose")) then
print("Nix: Filtered to " .. #filtered_paths .. " relevant store paths for package: " .. package_name)
end
end
if opt and (opt.verbose or option.get("verbose")) then
print("Nix: Extracting package info for " .. #filtered_paths .. " store paths")
end
local version_groups = group_paths_by_version(filtered_paths, package_name, opt)
local packages = {} -- map: "package_name:version" -> package_info
for version_key, version_data in pairs(version_groups) do
local pkg_name = version_data.name
local pkg_version = version_data.version
local pkg = package_info:new(pkg_name, pkg_version)
-- Process all store paths for this version only
for _, path_data in ipairs(version_data.paths) do
local store_path = path_data.path
local output_paths = path_data.outputs
local current_output = path_data.current_output
pkg:add_store_path(store_path, current_output)
-- Add all output paths to the package
if output_paths then
for output_name, output_path in pairs(output_paths) do
pkg._outputs[output_name] = output_path
end
end
-- include directories (and their subdirs)
local includedir = path.join(store_path, "include")
if os.isdir(includedir) then
pkg:add_includedir(includedir)
local subdirs = try { function() return os.dirs(path.join(includedir, "*")) end } or {}
for _, subdir in ipairs(subdirs) do
if os.isdir(subdir) then
pkg:add_includedir(subdir)
end
end
end
-- bin
local bindir = path.join(store_path, "bin")
if os.isdir(bindir) then
pkg:add_bindir(bindir)
end
-- lib and libs
local libdir = path.join(store_path, "lib")
if os.isdir(libdir) then
local libfiles = try { function()
local files = {}
local patterns = {"*.so*", "*.a", "*.dylib*"}
for _, pattern in ipairs(patterns) do
for _, f in ipairs(os.files(path.join(libdir, pattern)) or {}) do
table.insert(files, f)
end
end
return files
end } or {}
if #libfiles > 0 then
pkg:add_linkdir(libdir)
for _, libfile in ipairs(libfiles) do
local filename = path.filename(libfile)
local linkname = filename:match("^lib(.+)%.so") or
filename:match("^lib(.+)%.a") or
filename:match("^lib(.+)%.dylib")
if linkname then
pkg:add_link(linkname)
pkg:add_libfile(libfile)
end
end
else
-- if no libs, see if cmake/pkgconfig dirs exist and add linkdir
local has_cmake = os.isdir(path.join(libdir, "cmake"))
local has_pkgconfig = os.isdir(path.join(libdir, "pkgconfig"))
if has_cmake or has_pkgconfig then
pkg:add_linkdir(libdir)
end
end
end
end
packages[version_key] = pkg
end
-- finalize all package_info instances into plain tables
local result = {}
for version_key, pkgobj in pairs(packages) do
local plain = pkgobj:finalize()
result[version_key] = plain
end
-- cache result
cache:set2(PACKAGE_INFO_CACHE, cache_key, result)
memory_cache:set2(PACKAGE_INFO_CACHE, cache_key, result)
cache:save()
if opt and (opt.verbose or option.get("verbose")) then
local keys = table.keys(result)
print("Nix: Extracted " .. #keys .. " package versions from store paths")
end
return result
end
local function find_all_with_pkgconfig(package_name, store_paths, opt)
local cache = get_nix_cache()
local memory_cache = get_memory_cache()
-- prefer the normalized env key stored in session memcache
local env_key = memory_cache:get("last_env_key")
local cache_key = package_name .. ":all:" .. (env_key or table.concat(store_paths, ";"))
-- Check session memory cache first
local memo = memory_cache:get2(PKGCONFIG_CACHE, cache_key)
if memo ~= nil then
if opt and (opt.verbose or option.get("verbose")) then
local status = (type(memo) == "table" and #memo > 0) and "found" or "not found"
print("Nix: Using session cached pkg-config results (" .. status .. ") for: " .. package_name)
end
return (type(memo) == "table") and memo or {}
end
-- Check persistent cache
local cached_result = cache:get2(PKGCONFIG_CACHE, cache_key)
if cached_result ~= nil then
if opt and (opt.verbose or option.get("verbose")) then
local status = (type(cached_result) == "table" and #cached_result > 0) and "found" or "not found"
print("Nix: Using persistent cached pkg-config results (" .. status .. ") for: " .. package_name)
end
local result_table = (type(cached_result) == "table") and cached_result or {}
memory_cache:set2(PKGCONFIG_CACHE, cache_key, result_table)
return result_table
end
-- Filter store paths to only relevant ones
local filtered_paths = {}
local seen = {}
for _, store_path in ipairs(store_paths) do
if path_matches_package(store_path, package_name) and not seen[store_path] then
seen[store_path] = true
table.insert(filtered_paths, store_path)
end
end
-- Add dependencies of matching packages
filtered_paths = follow_propagated_inputs(filtered_paths, opt)
local all_results = {}
for _, store_path in ipairs(filtered_paths) do
local pkgconfig_dirs = {
path.join(store_path, "lib", "pkgconfig"),
path.join(store_path, "share", "pkgconfig")
}
for _, pcdir in ipairs(pkgconfig_dirs) do
if os.isdir(pcdir) then
local result = find_package_from_pkgconfig(package_name, {configdirs = pcdir})
if result and result.version then
table.insert(all_results, result)
if opt and (opt.verbose or option.get("verbose")) then
print("Nix: Found pkg-config version: " .. package_name .. " " .. result.version)
end
end
end
end
end
memory_cache:set2(PKGCONFIG_CACHE, cache_key, all_results)
cache:set2(PKGCONFIG_CACHE, cache_key, all_results)
return all_results
end
local function select_best_version(packages, package_name, require_version, opt)
-- Collect all versions of the target package
local candidates = {}
local name_lower = package_name:lower()
for version_key, pkg_data in pairs(packages) do
local pkg_name = pkg_data.name or ""
if pkg_name:lower() == name_lower then
table.insert(candidates, pkg_data)
end
end
-- Handle empty candidates
if not candidates or #candidates == 0 then
if opt and (opt.verbose or option.get("verbose")) then
print("Nix: No versions found for package: " .. package_name)
end
return nil
end
-- If only one candidate, return it
if #candidates == 1 then
if opt and (opt.verbose or option.get("verbose")) then
local ver = candidates[1].version or "unknown"
print("Nix: Found single version: " .. package_name .. " " .. ver)
end
return candidates[1]
end
-- Multiple candidates - select best one
local best_match = nil
local best_version = nil
for _, candidate in ipairs(candidates) do
local pkg_version = candidate.version
if not pkg_version then
-- No version info, use as fallback if nothing better found
if not best_match then
best_match = candidate
end
goto continue
end
-- Check if version satisfies constraints
local satisfies = false
if not require_version or require_version == "latest" then
satisfies = true
else
satisfies = try {
function()
return semver.satisfies(pkg_version, require_version)
end,
catch = function()
-- If semver parsing fails, try exact match
return (pkg_version == require_version)
end
}
end
if satisfies then
-- Try to parse version for comparison
local current_ver = try {
function()
return semver.new(pkg_version)
end,
catch = function()
return nil
end
}
-- Select highest version among satisfying candidates
if not best_version then
best_match = candidate
best_version = current_ver
elseif current_ver and best_version then
-- Both versions are valid semver, compare them
if current_ver:gt(best_version) then
best_match = candidate
best_version = current_ver
end
elseif current_ver and not best_version then
-- Current has valid semver but previous didn't, prefer current
best_match = candidate
best_version = current_ver
end
end
::continue::
end
-- Log results if verbose
if opt and (opt.verbose or option.get("verbose")) then
if best_match then
local ver = best_match.version or "unknown"
local constraint_msg = (require_version and require_version ~= "")
and (" matching constraint: " .. require_version) or ""
print("Nix: Selected version: " .. package_name .. " " .. ver .. constraint_msg)
else
local constraint_msg = (require_version and require_version ~= "")
and (" matching constraint: " .. require_version) or ""
print("Nix: No version found for: " .. package_name .. constraint_msg)
end
end
return best_match
end
local function nonempty_string(v)
return type(v) == "string" and v ~= "" and v
end
-- find package using the nix package manager
--
-- @param name the package name
-- @param opt the options, e.g. {verbose = true, version = "1.12.x")
function main(name, opt)
opt = opt or {}
-- ensure a stable env cache key is available for the whole run
local memory_cache = get_memory_cache()
memory_cache:set("last_env_key", generate_env_cache_key())
local require_version = nonempty_string(opt.require_version) or nonempty_string(opt.version)
-- Skip cross-compilation scenarios
if is_cross(opt.plat, opt.arch) then
return
end
-- Get all store paths from all nix environments (cached)
local store_paths = get_all_store_paths(opt)
if #store_paths == 0 then
if opt and (opt.verbose or option.get("verbose")) then
print("Nix: No store paths found in any nix environment")
end
return nil
end
-- Extract all package info (cached)
local packages = extract_package_info(store_paths, name, opt)
local keys = table.keys(packages)
if not packages or #keys == 0 then
if opt and (opt.verbose or option.get("verbose")) then
print("Nix: No packages extracted from store paths")
end
return nil
end
-- Find best version from extracted packages
local found_package = select_best_version(packages, name, require_version, opt)
if not found_package then
if opt and (opt.verbose or option.get("verbose")) then
print("Nix: Package " .. name .. " not found or no matching version")
end
return nil
end
local pkgconfig_results = find_all_with_pkgconfig(name, store_paths, opt)
local pkgconfig_result = select_best_version(pkgconfig_results, name, require_version, opt)
-- Decide which result to use - prefer whichever has the highest version
local use_pkgconfig = false
if pkgconfig_result then
if not found_package.version then
-- found_package has no version, prefer pkg-config
use_pkgconfig = true
elseif not pkgconfig_result.version then
-- pkg-config has no version, prefer found_package
use_pkgconfig = false
else
-- Both have versions, compare them
local pkg_ver = try {
function() return semver.new(found_package.version) end
}
local pkgconfig_ver = try {
function() return semver.new(pkgconfig_result.version) end
}
if pkg_ver and pkgconfig_ver then
-- Prefer whichever is higher
if pkgconfig_ver:gt(pkg_ver) then
use_pkgconfig = true
end
elseif pkgconfig_ver then
-- Only pkg-config has valid semver
use_pkgconfig = true
end
-- else: only pkg_ver is valid or neither is valid, use found_package
end
end
if use_pkgconfig and pkgconfig_result then
local ver = pkgconfig_result.version or "unknown"
if opt and (opt.verbose or option.get("verbose")) then
print("Nix: Returning pkg-config package: " .. name .. " (" .. ver .. ")")
end
return pkgconfig_result
end
-- Return the selected version from extracted packages
local ver = found_package.version or "unknown"
if opt and (opt.verbose or option.get("verbose")) then
print("Nix: Returning package: " .. name .. " (" .. ver .. ")")
end
local result = {
name = found_package.name,
version = found_package.version
}
local fields_to_copy = {"includedirs", "linkdirs", "links", "libfiles", "bindirs"}
-- Add directories and links if they exist
for _, field in ipairs(fields_to_copy) do
if found_package[field] and #found_package[field] > 0 then
result[field] = found_package[field]
end
end
return result
end
|