Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 35 lines 413 B view raw
1{ 2 lib, 3 mkMesonLibrary, 4 5 nix-util-c, 6 nix-store, 7 nix-store-c, 8 nix-main, 9 10 # Configuration Options 11 12 version, 13}: 14 15mkMesonLibrary (finalAttrs: { 16 pname = "nix-main-c"; 17 inherit version; 18 19 workDir = ./.; 20 21 propagatedBuildInputs = [ 22 nix-util-c 23 nix-store 24 nix-store-c 25 nix-main 26 ]; 27 28 mesonFlags = [ 29 ]; 30 31 meta = { 32 platforms = lib.platforms.unix ++ lib.platforms.windows; 33 }; 34 35})