Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
83 lines
1.4 KiB
Nix
83 lines
1.4 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
appstream,
|
|
meson,
|
|
ninja,
|
|
vala,
|
|
gettext,
|
|
itstool,
|
|
fetchurl,
|
|
pkg-config,
|
|
libxml2,
|
|
gtk4,
|
|
glib,
|
|
gtksourceview5,
|
|
wrapGAppsHook4,
|
|
gnome,
|
|
mpfr,
|
|
gmp,
|
|
libsoup_3,
|
|
libmpc,
|
|
libadwaita,
|
|
gsettings-desktop-schemas,
|
|
libgee,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gnome-calculator";
|
|
version = "48.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/gnome-calculator/${lib.versions.major version}/gnome-calculator-${version}.tar.xz";
|
|
hash = "sha256-vEvUGpuhkPRcvuDYxnUs3F0osM7xxr0MAeLa4fPBkWI=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
appstream
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
vala
|
|
gettext
|
|
itstool
|
|
wrapGAppsHook4
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk4
|
|
glib
|
|
libxml2
|
|
gtksourceview5
|
|
mpfr
|
|
gmp
|
|
libgee
|
|
gsettings-desktop-schemas
|
|
libsoup_3
|
|
libmpc
|
|
libadwaita
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
preCheck = ''
|
|
# Currency conversion test tries to store currency data in $HOME/.cache.
|
|
export HOME=$TMPDIR
|
|
'';
|
|
|
|
passthru = {
|
|
updateScript = gnome.updateScript {
|
|
packageName = "gnome-calculator";
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://apps.gnome.org/Calculator/";
|
|
description = "Application that solves mathematical equations and is suitable as a default application in a Desktop environment";
|
|
mainProgram = "gnome-calculator";
|
|
teams = [ teams.gnome ];
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|