nixpkgs/pkgs/applications/kde/angelfish.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

78 lines
1.7 KiB
Nix
Raw Normal View History

2021-03-07 22:47:42 +00:00
{ lib
, mkDerivation
, cmake
, corrosion
, extra-cmake-modules
, kconfig
, kcoreaddons
, kdbusaddons
, ki18n
, kirigami-addons
2021-03-07 22:47:42 +00:00
, kirigami2
, knotifications
, kpurpose
, kwindowsystem
, qtfeedback
2021-03-07 22:47:42 +00:00
, qtquickcontrols2
, qqc2-desktop-style
2021-03-07 22:47:42 +00:00
, qtwebengine
, rustPlatform
, srcs
# These must be updated in tandem with package updates.
, cargoShaForVersion ? "23.04.0"
, cargoSha256 ? "sha256-96Qe8zdLZdOrU/t6J+JJ6V0PXyFOnJF18qDrk4PZGsA="
2021-03-07 22:47:42 +00:00
}:
# Guard against incomplete updates.
# Values are provided as callPackage inputs to enable easier overrides through overlays.
if cargoShaForVersion != srcs.angelfish.version
then builtins.throw ''
angelfish package update is incomplete.
Hash for cargo dependencies is declared for version ${cargoShaForVersion}, but we're building ${srcs.angelfish.version}.
Update the cargoSha256 and cargoShaForVersion for angelfish.
'' else
2021-03-07 22:47:42 +00:00
mkDerivation rec {
pname = "angelfish";
cargoDeps = rustPlatform.fetchCargoTarball {
src = srcs.angelfish.src;
name = "${pname}-${srcs.angelfish.version}";
sha256 = cargoSha256;
2021-03-07 22:47:42 +00:00
};
nativeBuildInputs = [
cmake
corrosion
extra-cmake-modules
] ++ (with rustPlatform; [
cargoSetupHook
rust.cargo
rust.rustc
]);
buildInputs = [
kconfig
kcoreaddons
kdbusaddons
ki18n
kirigami-addons
2021-03-07 22:47:42 +00:00
kirigami2
knotifications
kpurpose
kwindowsystem
qtfeedback
2021-03-07 22:47:42 +00:00
qtquickcontrols2
qqc2-desktop-style
2021-03-07 22:47:42 +00:00
qtwebengine
];
meta = with lib; {
description = "Web browser for Plasma Mobile";
2021-09-22 04:09:38 +00:00
homepage = "https://invent.kde.org/plasma-mobile/angelfish";
2021-03-07 22:47:42 +00:00
license = licenses.gpl3Plus;
maintainers = with maintainers; [ dotlambda ];
};
}