nixpkgs/pkgs/kde/misc/kweathercore/default.nix
K900 ce77225e21 pkgs/kde: init at 6.0.0 / 24.02.0, the Nix bits
This is the thing you want to look at.
2024-02-28 18:49:23 +03:00

20 lines
412 B
Nix

{
lib,
mkKdeDerivation,
fetchurl,
qtpositioning,
}:
mkKdeDerivation rec {
pname = "kweathercore";
version = "0.8.0";
src = fetchurl {
url = "mirror://kde/stable/kweathercore/${version}/kweathercore-${version}.tar.xz";
hash = "sha256-m8rBPa+YcF4vDVsGshoahpSWIHj84b9iDbvDZIc6Dv4=";
};
extraBuildInputs = [qtpositioning];
meta.license = with lib.licenses; [cc-by-40 cc0 lgpl2Plus];
}