kweathercore: init at v0.4

Why 0.4 when 0.5 is tagged? Because current kweather depends on 0.4 and
won't build with 0.5...

¯\_(ツ)_/¯

+37
+35
pkgs/development/libraries/kweathercore/default.nix
··· 1 + { mkDerivation 2 + , lib 3 + , fetchFromGitLab 4 + , extra-cmake-modules 5 + , ki18n 6 + , qtlocation 7 + }: 8 + 9 + mkDerivation rec { 10 + pname = "kweathercore"; 11 + version = "0.4"; 12 + 13 + src = fetchFromGitLab { 14 + domain = "invent.kde.org"; 15 + owner = "libraries"; 16 + repo = pname; 17 + rev = "v${version}"; 18 + sha256 = "0mwmkr1xg0mcgbjgzp04chf55xyrgf0gndg3hs4c21bfjpy1gp3k"; 19 + }; 20 + 21 + buildInputs = [ 22 + ki18n 23 + qtlocation 24 + ]; 25 + 26 + nativeBuildInputs = [ extra-cmake-modules ]; 27 + 28 + meta = with lib; { 29 + license = [ licenses.cc0 ]; 30 + maintainers = [ maintainers.samueldr ]; 31 + description = '' 32 + Library to facilitate retrieval of weather information including forecasts and alerts 33 + ''; 34 + }; 35 + }
+2
pkgs/top-level/qt5-packages.nix
··· 108 108 109 109 kquickimageedit = callPackage ../development/libraries/kquickimageedit { }; 110 110 111 + kweathercore = libsForQt5.callPackage ../development/libraries/kweathercore { }; 112 + 111 113 ldutils = callPackage ../development/libraries/ldutils { }; 112 114 113 115 libcommuni = callPackage ../development/libraries/libcommuni { };