mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
5370b8267c
This is one of the requirements of KMyMoney and packaging is quite straightforward with no unexpected traps. Signed-off-by: aszlig <aszlig@nix.build> Cc: @ttuegel
12 lines
293 B
Nix
12 lines
293 B
Nix
{ mkDerivation, extra-cmake-modules
|
|
, kconfig, kcoreaddons, kio, kparts, qtwebkit
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "kdewebkit";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [ kconfig kcoreaddons kio kparts ];
|
|
propagatedBuildInputs = [ qtwebkit ];
|
|
outputs = [ "out" "dev" ];
|
|
}
|