mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 03:30:45 +00:00
ce77225e21
This is the thing you want to look at.
20 lines
417 B
Nix
20 lines
417 B
Nix
{
|
|
lib,
|
|
mkKdeDerivation,
|
|
fetchurl,
|
|
doxygen,
|
|
}:
|
|
mkKdeDerivation rec {
|
|
pname = "kdsoap-ws-discovery-client";
|
|
version = "0.4.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kde/stable/kdsoap-ws-discovery-client/kdsoap-ws-discovery-client-${version}.tar.xz";
|
|
hash = "sha256-LNJHwBPnX0EGWbrDcq/5PSLXHFpUwFnhN7lESvizQno=";
|
|
};
|
|
|
|
extraNativeBuildInputs = [doxygen];
|
|
|
|
meta.license = [lib.licenses.gpl3Plus];
|
|
}
|