Skip to content

Instantly share code, notes, and snippets.

@infinisil
Forked from dustinlacewell-wk/config.nix
Created October 22, 2017 03:19
Show Gist options
  • Save infinisil/6bfa70e2f62f2619db3b96e806e30aea to your computer and use it in GitHub Desktop.
Save infinisil/6bfa70e2f62f2619db3b96e806e30aea to your computer and use it in GitHub Desktop.
{
allowUnfree = true;
packageOverrides = super: let self = super.pkgs; in {
dotnetPackages = super.dotnetPackages // {
FSharpAutoComplete = super.dotnetPackages.FSharpAutoComplete.overrideDerivation (old : {
meta.platforms = super.stdenv.lib.platforms.linux ++ super.stdenv.lib.platforms.darwin;
});
};
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment