diff options
author | Bruno BELANYI | 2024-08-26 12:49:05 +0100 |
---|---|---|
committer | GitHub | 2024-08-26 12:49:05 +0100 |
commit | b1606c45f2f6c093e64b9943a4266028f8bd6308 (patch) | |
tree | 37c946c7aa2801cb7a49cc81f0307add943e0715 /pkgs/by-name/me | |
parent | db4be47741e7493dbf145d22167a0a9d61659e63 (diff) | |
parent | 633b5b3dcfd5b383c99251716b079d5b1caa9400 (diff) |
mealie: v1.11.0 -> v1.12.0 (#336527)
Diffstat (limited to 'pkgs/by-name/me')
-rw-r--r-- | pkgs/by-name/me/mealie/package.nix | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/pkgs/by-name/me/mealie/package.nix b/pkgs/by-name/me/mealie/package.nix index 5e49a9031a2d..8541e531b5af 100644 --- a/pkgs/by-name/me/mealie/package.nix +++ b/pkgs/by-name/me/mealie/package.nix @@ -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 ]; |