Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{
2 mkDerivation,
3 extra-cmake-modules,
4 gettext,
5 python3,
6 qtdeclarative,
7 qtscript,
8}:
9
10mkDerivation {
11 pname = "ki18n";
12 nativeBuildInputs = [ extra-cmake-modules ];
13 propagatedNativeBuildInputs = [
14 gettext
15 python3
16 ];
17 buildInputs = [
18 qtdeclarative
19 qtscript
20 ];
21}