Unverified Commit 7914bec1 authored by Stanisław Pitucha's avatar Stanisław Pitucha Committed by GitHub
Browse files

ssimulacra2: fix build (#510189)

parents 525e9cf0 f0ec0e2c
Loading
Loading
Loading
Loading
+10 −1
Original line number Diff line number Diff line
@@ -28,7 +28,16 @@ stdenv.mkDerivation (finalAttrs: {

  buildInputs = [
    libpng
    libhwy
    (libhwy.overrideAttrs rec {
      version = "0.15.0";
      src = fetchFromGitHub {
        owner = "google";
        repo = "highway";
        rev = version;
        hash = "sha256-v2HyyHtBydr7QiI83DW1yRv2kWjUOGxFT6mmdrN9XPo=";
      };
      patches = [ ];
    })
    lcms2
    giflib
  ];