Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 78d70573a2346d5c3b90d1286e79f83d3a354c18
Choose a base ref
..
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ea062fbf5f7538a34b2a525ac8910622d954e64b
Choose a head ref
Showing with 6 additions and 3 deletions.
  1. +6 −3 pkgs/by-name/ac/actual-server/package.nix
9 changes: 6 additions & 3 deletions pkgs/by-name/ac/actual-server/package.nix
Original file line number Diff line number Diff line change
@@ -9,14 +9,15 @@
nodejs,
yarn,
nixosTests,
nix-update-script,
}:
let
version = "24.10.1";
version = "24.11.0";
src = fetchFromGitHub {
owner = "actualbudget";
repo = "actual-server";
rev = "v${version}";
hash = "sha256-VJAD+lNamwuYmiPJLXkum6piGi5zLOHBp8cUeZagb4s=";
hash = "sha256-tEanuY2GRufLbyjkhwFcsn8Nl3wlf/PbVJjzJfTTk7g=";
};

# We cannot use fetchYarnDeps because that doesn't support yarn2/berry
@@ -72,7 +73,7 @@ let

outputHashAlgo = "sha256";
outputHashMode = "recursive";
outputHash = "sha256-eNpOS21pkamugoYVhzsEnstxeVN/J06yDZcshfr0Ek4=";
outputHash = "sha256-yda1GdnPRHOoaJzkGz755Lm9/J60lFDsVvBgf/2e+3I=";
};
in
stdenv.mkDerivation {
@@ -101,9 +102,11 @@ stdenv.mkDerivation {
passthru = {
inherit offlineCache;
tests = nixosTests.actual;
passthru.updateScript = nix-update-script { };
};

meta = {
changelog = "https://github.com/firefly-iii/firefly-iii/releases/tag/v${version}";
description = "A super fast privacy-focused app for managing your finances";
homepage = "https://actualbudget.org/";
mainProgram = "actual-server";