nix: remove outdated app2unit version pin (#1266)

* nix: Remove outadeted app2unit version pin.

* fix

---------

Co-authored-by: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>
This commit is contained in:
nik-bsta 2026-03-15 08:59:02 +01:00 committed by GitHub
parent b68f0bae14
commit 197eafdadc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 0 additions and 15 deletions

View file

@ -36,7 +36,6 @@
withX11 = false; withX11 = false;
withI3 = false; withI3 = false;
}; };
app2unit = pkgs.callPackage ./nix/app2unit.nix {inherit pkgs;};
caelestia-cli = inputs.caelestia-cli.packages.${pkgs.stdenv.hostPlatform.system}.default; caelestia-cli = inputs.caelestia-cli.packages.${pkgs.stdenv.hostPlatform.system}.default;
}; };
with-cli = caelestia-shell.override {withCli = true;}; with-cli = caelestia-shell.override {withCli = true;};

View file

@ -1,14 +0,0 @@
{
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=";
};
})