ce77225e21
This is the thing you want to look at.
15 lines
249 B
Nix
15 lines
249 B
Nix
{
|
|
mkKdeDerivation,
|
|
doxygen,
|
|
qt5compat,
|
|
boost,
|
|
gmp,
|
|
libgcrypt,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "libktorrent";
|
|
|
|
extraNativeBuildInputs = [doxygen];
|
|
extraBuildInputs = [qt5compat];
|
|
extraPropagatedBuildInputs = [boost gmp libgcrypt];
|
|
}
|