-
-
Save samueldr/81783ce7af4cb4243e1352d78ac39006 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
let | |
pkgs = import <nixpkgs> { | |
overlays = [ | |
(self: super: { | |
env6 = super.overrideCC super.stdenv self.gcc6; | |
}) | |
]; | |
}; | |
in | |
pkgs.env6.mkDerivation { | |
name = "demo"; | |
buildInputs = [pkgs.env6]; | |
} |
Author
samueldr
commented
Sep 12, 2018
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment