Unverified Commit 422f60a9 authored by Philip Taron's avatar Philip Taron
Browse files

shattered-pixel-dungeon: fix evaluation on Nix 2.3.18

To reproduce, run `nix shell nixpkgs#nixVersions.minimum --command nix-build -A shattered-pixel-dungeon`
parent 27ab0078
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -53,7 +53,7 @@ let
    keywords = [ "roguelike" "dungeon" "crawler" ];
  };

  depsPath' = if depsPath != null then depsPath else ./${pname}/deps.json;
  depsPath' = if depsPath != null then depsPath else ./. + "/${pname}/deps.json";

in stdenv.mkDerivation (cleanAttrs // {
  inherit pname version src patches postPatch;