7e47f3658e
GitOrigin-RevId: 1925c603f17fc89f4c8f6bf6f631a802ad85d784
19 lines
269 B
Nix
19 lines
269 B
Nix
{
|
|
mkKdeDerivation,
|
|
doxygen,
|
|
qt5compat,
|
|
boost,
|
|
gmp,
|
|
libgcrypt,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "libktorrent";
|
|
|
|
extraNativeBuildInputs = [ doxygen ];
|
|
extraBuildInputs = [ qt5compat ];
|
|
extraPropagatedBuildInputs = [
|
|
boost
|
|
gmp
|
|
libgcrypt
|
|
];
|
|
}
|