nixpkgs/pkgs/applications/kde/angelfish.nix

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

84 lines
1.6 KiB
Nix
Raw Normal View History

2021-03-07 22:47:42 +00:00
{
lib,
mkDerivation,
cargo,
2021-03-07 22:47:42 +00:00
cmake,
corrosion,
extra-cmake-modules,
fetchpatch2,
2023-08-24 10:59:41 +00:00
futuresql,
2021-03-07 22:47:42 +00:00
kconfig,
kcoreaddons,
kdbusaddons,
ki18n,
kirigami-addons,
2021-03-07 22:47:42 +00:00
kirigami2,
knotifications,
kpurpose,
kwindowsystem,
2023-08-24 10:59:41 +00:00
qcoro,
qtfeedback,
2021-03-07 22:47:42 +00:00
qtquickcontrols2,
qqc2-desktop-style,
2021-03-07 22:47:42 +00:00
qtwebengine,
rustPlatform,
rustc,
srcs,
# provided as callPackage input to enable easier overrides through overlays
2024-02-15 14:18:39 +00:00
cargoSha256 ? "sha256-PSrTo7nGgH0KxA82RlBEwtOu80WMCBeaCxHj3n7SgEE=",
2021-03-07 22:47:42 +00:00
}:
mkDerivation rec {
pname = "angelfish";
patches = [
(fetchpatch2 {
name = "fix-build-with-corrosion-0.5.patch";
url = "https://invent.kde.org/network/angelfish/-/commit/b04928e3b62a11b647622b81fb67b7c0db656ac8.patch";
hash = "sha256-9rpkMKQKrvGJFIQDwSIeeZyk4/vd348r660mBOKzM2E=";
})
];
2021-03-07 22:47:42 +00:00
cargoDeps = rustPlatform.fetchCargoTarball {
# include version in the name so we invalidate the FOD
name = "${pname}-${srcs.angelfish.version}";
inherit (srcs.angelfish) src;
sha256 = cargoSha256;
2021-03-07 22:47:42 +00:00
};
nativeBuildInputs = [
cmake
corrosion
extra-cmake-modules
rustPlatform.cargoSetupHook
cargo
rustc
];
2021-03-07 22:47:42 +00:00
buildInputs = [
2023-08-24 10:59:41 +00:00
futuresql
2021-03-07 22:47:42 +00:00
kconfig
kcoreaddons
kdbusaddons
ki18n
kirigami-addons
2021-03-07 22:47:42 +00:00
kirigami2
knotifications
kpurpose
kwindowsystem
2023-08-24 10:59:41 +00:00
qcoro
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 ];
};
}