This commit is contained in:
Zacharias-Brohn
2026-02-06 17:17:38 +01:00
parent 47677c20dc
commit 76c206ed91
4 changed files with 243 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
{
pkgs, # To ensure the nixpkgs version of app2unit
fetchFromGitHub,
...
}:
pkgs.app2unit.overrideAttrs (
final: prev: rec {
version = "1.0.3"; # Fix old issue related to missing env var
src = fetchFromGitHub {
owner = "Vladimir-csp";
repo = "app2unit";
tag = "v${version}";
hash = "sha256-7eEVjgs+8k+/NLteSBKgn4gPaPLHC+3Uzlmz6XB0930=";
};
}
)