2017-05-15 12:05:35 -05:00
|
|
|
{ mkDerivation, lib, extra-cmake-modules, python }:
|
2016-04-21 10:32:21 -05:00
|
|
|
|
2017-05-15 12:05:35 -05:00
|
|
|
mkDerivation {
|
2016-04-21 10:32:21 -05:00
|
|
|
name = "kapidox";
|
2016-04-28 10:48:26 -05:00
|
|
|
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
|
2017-02-26 06:49:15 -06:00
|
|
|
nativeBuildInputs = [ extra-cmake-modules python ];
|
2017-05-22 13:49:07 -05:00
|
|
|
postFixup = ''
|
|
|
|
moveToOutput bin $bin
|
|
|
|
'';
|
2016-04-21 10:32:21 -05:00
|
|
|
}
|