Use just for repetitive tasks.
This commit is contained in:
parent
71fd3789c8
commit
b653ea2d08
|
@ -11,12 +11,13 @@
|
|||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
themeName = "hermit_zola";
|
||||
in
|
||||
with pkgs;
|
||||
{
|
||||
packages.blog = pkgs.stdenv.mkDerivation rec {
|
||||
packages.blog = stdenv.mkDerivation rec {
|
||||
pname = "annotated-annals";
|
||||
version = "2022-08-28";
|
||||
src = ./.;
|
||||
nativeBuildInputs = [ pkgs.zola ];
|
||||
nativeBuildInputs = [ zola ];
|
||||
configurePhase = ''
|
||||
mkdir -p "themes/${themeName}"
|
||||
cp -r ${hermit-zola}/* "themes/${themeName}"
|
||||
|
@ -27,8 +28,8 @@
|
|||
|
||||
defaultPackage = self.packages.${system}.blog;
|
||||
|
||||
devShell = pkgs.mkShell {
|
||||
packages = [ pkgs.zola ];
|
||||
devShell = mkShell {
|
||||
packages = [ just zola ];
|
||||
shellHook = ''
|
||||
ln -fsn "${hermit-zola}" "themes/${themeName}"
|
||||
'';
|
||||
|
|
Loading…
Reference in a new issue