diff options
Diffstat (limited to 'users/fcuny/blog/default.nix')
-rw-r--r-- | users/fcuny/blog/default.nix | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/users/fcuny/blog/default.nix b/users/fcuny/blog/default.nix new file mode 100644 index 0000000..8c817f5 --- /dev/null +++ b/users/fcuny/blog/default.nix @@ -0,0 +1,30 @@ +{ pkgs, ... }: + +pkgs.stdenv.mkDerivation rec { + name = "fcuny.net"; + + src = ./.; + + nativeBuildInputs = [ pkgs.hugo pkgs.git ]; + + installPhase = '' + mkdir -p $out + ${pkgs.hugo}/bin/hugo --minify -d $out/ + ''; + + server = pkgs.writers.writeBashBin "run-server" '' + set -ueo pipefail + cd $(git rev-parse --show-toplevel) + cd users/fcuny/blog + export PATH=${pkgs.lib.makeBinPath [ pkgs.hugo pkgs.git ]} + hugo server -D + ''; + + meta = with pkgs.lib; { + description = "franck cuny's blog"; + homepage = "https://fcuny.net"; + license = licenses.mit; + platforms = platforms.linux; + maintainers = [ ]; + }; +} |