mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-27 08:04:14 +00:00
10 lines
220 B
Nix
10 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
|
|
'';
|
|
}
|