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