Skip to content

Commit

Permalink
[Backport release-24.11] mobilizon: fix internal version (#370380)
Browse files Browse the repository at this point in the history
  • Loading branch information
erictapen authored Jan 3, 2025
2 parents 5583850 + 27d2f14 commit dcfcd8f
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
13 changes: 13 additions & 0 deletions pkgs/servers/mobilizon/0001-fix-version.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
diff --git a/mix.exs b/mix.exs
index 8338abf8..883e6987 100644
--- a/mix.exs
+++ b/mix.exs
@@ -1,7 +1,7 @@
defmodule Mobilizon.Mixfile do
use Mix.Project

- @version "5.1.0"
+ @version "5.1.1"

def project do
[
5 changes: 5 additions & 0 deletions pkgs/servers/mobilizon/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ in
mixRelease rec {
inherit (common) pname version src;

# Version 5.1.1 failed to bump their internal package version,
# which causes issues with static file serving in the NixOS module.
# See https://github.com/NixOS/nixpkgs/pull/370277
patches = [ ./0001-fix-version.patch ];

nativeBuildInputs = [
git
cmake
Expand Down

0 comments on commit dcfcd8f

Please sign in to comment.