about summary refs log tree commit diff
path: root/web/vokobe/default.nix
blob: 7257962f180981a8e94e07a6d986e728c7c701c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ pkgs, naersk, ... }:

let
	naersk' = pkgs.callPackage naersk {};
in naersk'.buildPackage {
	src = ./.;

	meta = with pkgs.lib; {
		description = "A minimal static site generator tailored to my needs.";
		homepage    = "https://git.emile.space/hanemile/vokobe";
		license     = licenses.mit;
		platforms   = platforms.all;
		maintainers = with maintainers; [ hanemile ];
	};
}