1{
2 lib,
3 mkMesonLibrary,
4
5 nix-util,
6 nix-store,
7 nlohmann_json,
8 libgit2,
9
10 # Configuration Options
11
12 version,
13}:
14
15mkMesonLibrary (finalAttrs: {
16 pname = "nix-fetchers";
17 inherit version;
18
19 workDir = ./.;
20
21 buildInputs = [
22 libgit2
23 ];
24
25 propagatedBuildInputs = [
26 nix-store
27 nix-util
28 nlohmann_json
29 ];
30
31 meta = {
32 platforms = lib.platforms.unix ++ lib.platforms.windows;
33 };
34
35})