mate.mate-calc: fix cross compilation, format with nixfmt

This commit is contained in:
Nick Cao 2024-11-29 12:38:38 -05:00
parent b9da4f27d9
commit 326602a983
No known key found for this signature in database

View File

@ -1,15 +1,16 @@
{ lib {
, stdenv lib,
, fetchurl stdenv,
, pkg-config fetchurl,
, gettext pkg-config,
, itstool gettext,
, gtk3 itstool,
, libmpc gtk3,
, libxml2 libmpc,
, mpfr libxml2,
, wrapGAppsHook3 mpfr,
, mateUpdateScript wrapGAppsHook3,
mateUpdateScript,
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
@ -21,9 +22,12 @@ stdenv.mkDerivation rec {
sha256 = "gEsSXR4oZLHnSvgW2psquLGUcrmvl0Q37nNVraXmKPU="; sha256 = "gEsSXR4oZLHnSvgW2psquLGUcrmvl0Q37nNVraXmKPU=";
}; };
strictDeps = true;
nativeBuildInputs = [ nativeBuildInputs = [
gettext gettext
itstool itstool
libxml2 # xmllint
pkg-config pkg-config
wrapGAppsHook3 wrapGAppsHook3
]; ];