9405df4a82
GitOrigin-RevId: 8e4fe32876ca15e3d5eb3ecd3ca0b224417f5f17
9 lines
219 B
Nix
9 lines
219 B
Nix
{ mkDerivation, lib, extra-cmake-modules, python3 }:
|
|
|
|
mkDerivation {
|
|
name = "kapidox";
|
|
nativeBuildInputs = [ extra-cmake-modules python3 python3.pkgs.setuptools ];
|
|
postFixup = ''
|
|
moveToOutput bin $bin
|
|
'';
|
|
}
|