Unverified Commit 393cb1e3 authored by Peder Bergebakken Sundt's avatar Peder Bergebakken Sundt Committed by GitHub
Browse files

sladeUnstable: 3.2.6-unstable-2024-11-26 -> 3.2.7-unstable-2025-04-22 (#403176)

parents 0c54ab2b ea4ecfe2
Loading
Loading
Loading
Loading
+12 −11
Original line number Diff line number Diff line
@@ -8,27 +8,27 @@
  zip,
  wxGTK,
  gtk3,
  sfml,
  sfml_2,
  fluidsynth,
  curl,
  freeimage,
  ftgl,
  glew,
  lua,
  mpg123,
  wrapGAppsHook3,
  unstableGitUpdater,
  libwebp,
}:

stdenv.mkDerivation {
  pname = "slade";
  version = "3.2.6-unstable-2024-11-26";
  version = "3.2.7-unstable-2025-04-22";

  src = fetchFromGitHub {
    owner = "sirjuddington";
    repo = "SLADE";
    rev = "f8ca52edf98e649c6455f6cc32f7aa361e41babe";
    hash = "sha256-h43kYVLDxr1Z3vKJ+IZaDmvkerUdGJFLzJrPj0b2VUI=";
    rev = "f8584231353845148c7623990dd90291fcb70f33";
    hash = "sha256-tP84FfSjfOxFh8S7GuyHB0M13Svx6SLbloo8xt9oORU=";
  };

  nativeBuildInputs = [
@@ -42,18 +42,19 @@ stdenv.mkDerivation {
  buildInputs = [
    wxGTK
    gtk3
    sfml
    sfml_2
    fluidsynth
    curl
    freeimage
    ftgl
    glew
    lua
    mpg123
    libwebp
  ];

  cmakeFlags = [
    "-DwxWidgets_LIBRARIES=${wxGTK}/lib"
    (lib.cmakeFeature "CL_WX_CONFIG" (lib.getExe' (lib.getDev wxGTK) "wx-config"))
  ];

  env.NIX_CFLAGS_COMPILE = "-Wno-narrowing";
@@ -68,11 +69,11 @@ stdenv.mkDerivation {
    url = "https://github.com/sirjuddington/SLADE.git";
  };

  meta = with lib; {
  meta = {
    description = "Doom editor";
    homepage = "http://slade.mancubus.net/";
    license = licenses.gpl2Only; # https://github.com/sirjuddington/SLADE/issues/1754
    platforms = platforms.linux;
    maintainers = with maintainers; [ ertes ];
    license = lib.licenses.gpl2Only; # https://github.com/sirjuddington/SLADE/issues/1754
    platforms = lib.platforms.linux;
    maintainers = with lib.maintainers; [ ertes ];
  };
}