aboutsummaryrefslogtreecommitdiff
path: root/default.nix
blob: 958091fe1485785904ea58e360af521134f4258e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib
, llvmPackages
, cmake
, spdlog
, abseil-cpp }:

llvmPackages.stdenv.mkDerivation rec {
  pname = "msg";
  version = "0.1";

  src = ./.;

  nativeBuildInputs = [ cmake ];

  meta = with lib; {
    homepage = "https://github.com/compromyse/msg";
    description = "Minimal Static Site Generator";
    licencse = licenses.gpl3;
    platforms = with platforms; linux ++ darwin;
    maintainers = [ maintainers.compromyse ];
  };
}