mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-06 12:14:40 +00:00
20 lines
269 B
Nix
20 lines
269 B
Nix
{
|
|
mkKdeDerivation,
|
|
doxygen,
|
|
qt5compat,
|
|
boost,
|
|
gmp,
|
|
libgcrypt,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "libktorrent";
|
|
|
|
extraNativeBuildInputs = [ doxygen ];
|
|
extraBuildInputs = [ qt5compat ];
|
|
extraPropagatedBuildInputs = [
|
|
boost
|
|
gmp
|
|
libgcrypt
|
|
];
|
|
}
|