Last active
October 22, 2017 02:40
-
-
Save dustinlacewell-wk/1c8d3d2408896ae2f169f5ccbb13f28a to your computer and use it in GitHub Desktop.
This file contains hidden or 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
{ | |
allowUnfree = true; | |
packageOverrides = pkgs: { | |
dotnetPackages = pkgs.dotnetPackages.override { | |
overrides = self: super: { | |
FSharpAutoComplete = super.FSharpAutoComplete.overrideAttrs (oldAttrs: { | |
meta.platforms = pkgs.stdenv.lib.platforms.linux ++ pkgs.stdenv.lib.platforms.darwin; | |
}); | |
}; | |
}; | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment