Unverified Commit 82e387f1 authored by jopejoe1's avatar jopejoe1 Committed by GitHub
Browse files

dsda-doom: 0.28.1 -> 0.28.2; add nix-update-script (#351195)

parents a84cba70 f3206483
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -14,17 +14,18 @@
  libGLU,
  libzip,
  alsa-lib,
  nix-update-script,
}:

stdenv.mkDerivation rec {
  pname = "dsda-doom";
  version = "0.28.1";
  version = "0.28.2";

  src = fetchFromGitHub {
    owner = "kraflab";
    repo = "dsda-doom";
    rev = "v${version}";
    hash = "sha256-X2v9eKiIYX4Zi3C1hbUoW4mceRVa6sxpBsP4Npyo4hM=";
    hash = "sha256-TuDiClIq8GLY/3qGildlPpwUUHmpFNATRz5CNTLpfeM=";
  };

  sourceRoot = "${src.name}/prboom2";
@@ -45,8 +46,11 @@ stdenv.mkDerivation rec {
    SDL2_mixer
  ];

  passthru.updateScript = nix-update-script { };

  meta = {
    homepage = "https://github.com/kraflab/dsda-doom";
    changelog = "https://github.com/kraflab/dsda-doom/releases/tag/v${version}";
    description = "Advanced Doom source port with a focus on speedrunning, successor of PrBoom+";
    mainProgram = "dsda-doom";
    license = lib.licenses.gpl2Plus;