Commit 633b5b3d authored by Litchi Pi's avatar Litchi Pi
Browse files

mealie: v1.11.0 -> v1.12.0



Signed-off-by: default avatarLitchi Pi <litchi.pi@proton.me>
parent 5663c7d7
Loading
Loading
Loading
Loading
+2 −12
Original line number Diff line number Diff line
@@ -10,12 +10,12 @@
}:

let
  version = "1.11.0";
  version = "1.12.0";
  src = fetchFromGitHub {
    owner = "mealie-recipes";
    repo = "mealie";
    rev = "v${version}";
    hash = "sha256-tBbvmM66zCNpKqeekPY48j0t5PjLHeyQ8+kJ6755ivo=";
    hash = "sha256-Lwd0P1ssAITLH256uMXNb5b1OcFAy8OVjjpnmfNVUvQ=";
  };

  frontend = callPackage (import ./mealie-frontend.nix src version) { };
@@ -47,16 +47,6 @@ pythonpkgs.buildPythonApplication rec {
  inherit version src;
  pyproject = true;

  patches = [
    # Pull in https://github.com/mealie-recipes/mealie/pull/4002 manually until
    # it lands in an upstream mealie release.
    # See https://github.com/NixOS/nixpkgs/issues/321623.
    ( fetchpatch {
        url = "https://github.com/mealie-recipes/mealie/commit/65ece35966120479db903785b22e9f2645f72aa4.patch";
        hash = "sha256-4Nc0dFJrZ7ElN9rrq+CFpayKsrRjRd24fYraUFTzcH8=";
    })
  ];

  build-system = with pythonpkgs; [ poetry-core ];

  nativeBuildInputs = [ makeWrapper ];