Created
January 7, 2017 12:28
-
-
Save moretea/6ac13b1223d255f718b0e77efcf889e5 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
let | |
myGenerator = stdenv.mkDerivation { | |
name ="yadda"; | |
phases ="meh"; | |
meh = '' | |
mkdir $out | |
generateSomeNix > $out/generated.nix | |
''; | |
}; | |
in | |
import ${myGenerator}/generated.nix |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment