Commit 17f0d2ac authored by aleksana's avatar aleksana
Browse files

gweled: format with nixfmt-rfc-style

parent ee6e8448
Loading
Loading
Loading
Loading
+28 −6
Original line number Diff line number Diff line
{ 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 ];

  buildInputs = [ gtk2 libmikmod librsvg hicolor-icon-theme libcanberra-gtk2 ];
  nativeBuildInputs = [
    wrapGAppsHook3
    gettext
    autoreconfHook
    pkg-config
  ];

  buildInputs = [
    gtk2
    libmikmod
    librsvg
    hicolor-icon-theme
    libcanberra-gtk2
  ];

  configureFlags = [ "--disable-setgid" ];