gweled: format with nixfmt-rfc-style

This commit is contained in:
aleksana
2024-10-21 15:23:04 +08:00
parent ee6e844811
commit 17f0d2ac40
+27 -5
View File
@@ -1,6 +1,17 @@
{ lib, stdenv, fetchbzr, gettext
, gtk2, wrapGAppsHook3, autoreconfHook, pkg-config
, libmikmod, librsvg, libcanberra-gtk2, hicolor-icon-theme }:
{
lib,
stdenv,
fetchbzr,
gettext,
gtk2,
wrapGAppsHook3,
autoreconfHook,
pkg-config,
libmikmod,
librsvg,
libcanberra-gtk2,
hicolor-icon-theme,
}:
stdenv.mkDerivation rec {
pname = "gweled";
@@ -18,9 +29,20 @@ stdenv.mkDerivation rec {
substituteInPlace configure.ac --replace "AM_GNU_GETTEXT_VERSION([0.19.8])" "AM_GNU_GETTEXT_VERSION([${gettext.version}])"
'';
nativeBuildInputs = [ wrapGAppsHook3 gettext autoreconfHook pkg-config ];
nativeBuildInputs = [
wrapGAppsHook3
gettext
autoreconfHook
pkg-config
];
buildInputs = [ gtk2 libmikmod librsvg hicolor-icon-theme libcanberra-gtk2 ];
buildInputs = [
gtk2
libmikmod
librsvg
hicolor-icon-theme
libcanberra-gtk2
];
configureFlags = [ "--disable-setgid" ];