Unverified Commit c7e1409a authored by Arne Keller's avatar Arne Keller Committed by GitHub
Browse files

f3d: 3.0.0 -> 3.1.0 (#399844)

parents 14c90a99 4620c34e
Loading
Loading
Loading
Loading
+12 −2
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@
  lib,
  stdenv,
  fetchFromGitHub,
  fetchpatch,
  cmake,
  help2man,
  gzip,
@@ -22,7 +23,7 @@

stdenv.mkDerivation rec {
  pname = "f3d";
  version = "3.0.0";
  version = "3.1.0";

  outputs = [ "out" ] ++ lib.optionals withManual [ "man" ];

@@ -30,9 +31,18 @@ stdenv.mkDerivation rec {
    owner = "f3d-app";
    repo = "f3d";
    tag = "v${version}";
    hash = "sha256-mnDmo5qzdnElhvZwBmHL3xC2o8iLuvYyfZXHoaAUG08=";
    hash = "sha256-QJQlZXUZyWhpYteHoIsGOj1jdf3Lpy/BMXopeto4IRo=";
  };

  patches = [
    # https://github.com/f3d-app/f3d/pull/2155
    (fetchpatch {
      name = "add-missing-include.patch";
      url = "https://github.com/f3d-app/f3d/commit/3814f3356d888ce59bbe6eda0293c2de73b0c89a.patch";
      hash = "sha256-TeV8byIxX6PBEW06/sS7kHaSS99S88WiyzjHZ/Zh5x4=";
    })
  ];

  nativeBuildInputs =
    [
      cmake