bb584b27e9
GitOrigin-RevId: 5181d5945eda382ff6a9ca3e072ed6ea9b547fee
9 lines
220 B
Nix
9 lines
220 B
Nix
{ mkDerivation, lib, extra-cmake-modules, python3 }:
|
|
|
|
mkDerivation {
|
|
pname = "kapidox";
|
|
nativeBuildInputs = [ extra-cmake-modules python3 python3.pkgs.setuptools ];
|
|
postFixup = ''
|
|
moveToOutput bin $bin
|
|
'';
|
|
}
|