Skip to content

Instantly share code, notes, and snippets.

/powerle Secret

Created June 15, 2017 05:01
Show Gist options
  • Save anonymous/cf86df2cdba8ebd80f1a282ddc2f4139 to your computer and use it in GitHub Desktop.
Save anonymous/cf86df2cdba8ebd80f1a282ddc2f4139 to your computer and use it in GitHub Desktop.
with import <nixpkgs> {};
stdenv.mkDerivation rec {
name = "powerlevel9k";
src = fetchFromGitHub {
owner = "bhilburn";
repo = "powerlevel9k";
rev = "master";
sha256 = "1p3hnw2ya79k57mmx66p4d0qcfyz146yzv8gc3vrxn1j1ypasvyc";
};
# We don't need to do anything for installation
installPhase = ''
mkdir -p $out/powerlevel9k
mv * $out/powerlevel9k
'';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment