Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 278 B view raw
1{stdenv}: 2 3rec { 4 composeXcodeWrapper = import ./compose-xcodewrapper.nix { 5 inherit stdenv; 6 }; 7 8 buildApp = import ./build-app.nix { 9 inherit stdenv composeXcodeWrapper; 10 }; 11 12 simulateApp = import ./simulate-app.nix { 13 inherit stdenv composeXcodeWrapper; 14 }; 15}