-
-
Save jvns/f0fa8de179cf2b14d210c9a5f9adbbd5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-23.05-darwin"; | |
outputs = { self, nixpkgs }: { | |
defaultPackage.aarch64-darwin = nixpkgs.legacyPackages.aarch64-darwin.buildEnv { | |
name = "julia-stuff"; | |
paths = with nixpkgs.legacyPackages.aarch64-darwin; [ | |
cowsay | |
ruby | |
]; | |
pathsToLink = [ "/share/man" "/share/doc" "/bin" "/lib" ]; | |
extraOutputsToInstall = [ "man" "doc" ]; | |
}; | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment