There are now official docs, so follow those as they'll be up-to-date and easier to follow.
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
### Keybase proof | |
I hereby claim: | |
* I am nocoolnametom on github. | |
* I am nocoolnametom (https://keybase.io/nocoolnametom) on keybase. | |
* I have a public key whose fingerprint is 656F 95AE 0848 1EF2 54B6 9017 980C 909F C478 7796 | |
To claim this, I am signing this object: |
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
with import <nixpkgs> {}; | |
with lib; | |
stdenv.mkDerivation (rec { | |
version = "1.0.0"; | |
name = "ghost_blog-${version}"; | |
src = fetchFromGitHub { | |
owner = "nocoolnametom"; | |
repo = "nocoolnametom-local-ghost"; |
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
{ pkgs ? import <nixpkgs> {} }: with pkgs; | |
stdenv.mkDerivation { | |
name = "frontend"; | |
src = ../.; | |
buildInputs = [ elmPackages.elm nodejs nodePackages.yarn ]; | |
HOME="."; |