Created
March 8, 2019 05:58
-
-
Save kalbasit/08391107d809bba8ed7ccae98b94d37e 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
mkExternal = | |
{ name, revision, src, patches }: | |
stdenvNoCC.mkDerivation { | |
inherit src patches; | |
name = "${name}-${revision}"; | |
preferLocalBuild = true; | |
buildPhase = '' | |
echo -n "${revision}" > .git-revision | |
''; | |
installPhase = '' | |
cp -r . $out | |
''; | |
fixupPhase = ":"; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment