10 lines
113 B
Nix
10 lines
113 B
Nix
|
with import <nixpkgs> {};
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
name = "start.ffhh";
|
||
|
|
||
|
buildInputs = [
|
||
|
jekyll
|
||
|
];
|
||
|
}
|