tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
kdewebkit: removed
Thomas Tuegel
10 years ago
dd34c610
cc6a7d55
-13
2 changed files
expand all
collapse all
unified
split
pkgs
desktops
kde-5
frameworks-5.21
default.nix
kdewebkit.nix
-1
pkgs/desktops/kde-5/frameworks-5.21/default.nix
reviewed
···
70
70
kdelibs4support = callPackage ./kdelibs4support {};
71
71
kdesignerplugin = callPackage ./kdesignerplugin.nix {};
72
72
kdesu = callPackage ./kdesu.nix {};
73
73
-
kdewebkit = callPackage ./kdewebkit.nix {};
74
73
kdnssd = callPackage ./kdnssd.nix {};
75
74
kdoctools = callPackage ./kdoctools {};
76
75
kemoticons = callPackage ./kemoticons.nix {};
-12
pkgs/desktops/kde-5/frameworks-5.21/kdewebkit.nix
reviewed
···
1
1
-
{ kdeFramework, lib, extra-cmake-modules, kconfig, kcoreaddons
2
2
-
, ki18n, kio, kjobwidgets, kparts, kservice, kwallet, qtwebkit
3
3
-
}:
4
4
-
5
5
-
kdeFramework {
6
6
-
name = "kdewebkit";
7
7
-
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
8
8
-
nativeBuildInputs = [ extra-cmake-modules ];
9
9
-
propagatedBuildInputs = [
10
10
-
kconfig kcoreaddons ki18n kio kjobwidgets kparts kservice kwallet qtwebkit
11
11
-
];
12
12
-
}