mirror of
https://github.com/chatmail/core.git
synced 2026-09-22 04:58:47 +03:00
10 lines
289 B
Nix
10 lines
289 B
Nix
{ pkgs, version }:
|
|
pkgs.stdenv.mkDerivation {
|
|
pname = "docs";
|
|
inherit version;
|
|
src = pkgs.lib.cleanSource ../.;
|
|
nativeBuildInputs = [ pkgs.doxygen ];
|
|
buildPhase = ''scripts/run-doxygen.sh'';
|
|
installPhase = ''mkdir -p $out; cp -av deltachat-ffi/html deltachat-ffi/xml $out'';
|
|
}
|