refactor: moved presenterm to unstable package set and removed overlay
All checks were successful
ci / nix-fmt (push) Successful in 2m16s

This commit is contained in:
Ceferino Patino 2026-03-23 12:43:52 -05:00
commit fdc3f21d8b
Signed by: c4patino
SSH key fingerprint: SHA256:9fQ9TsujGrdNNi76mnsu63v7dS5JOmHRZEqBOl49OR8
2 changed files with 5 additions and 21 deletions

View file

@ -1,20 +0,0 @@
{...}: final: prev: {
presenterm = prev.presenterm.overrideAttrs (oldAttrs: rec {
pname = "presenterm";
version = "0.16.1";
src = final.fetchFromGitHub {
owner = "mfontanini";
repo = "presenterm";
rev = "v${version}";
sha256 = "sha256-mIJktrgBweaaLD2YaRcs0vP5hKRy/kMN/HEnwO323DA=";
};
cargoDeps = final.rustPlatform.fetchCargoVendor {
inherit src;
hash = "sha256-OlZXf8Wg32mXGDGbavLVf1ELoqqSmc8z9DNpvGOfAJ8=";
};
cargoBuildFeatures = [];
cargoCheckFeatures = [];
});
}

View file

@ -1,3 +1,7 @@
{channels, ...}: final: prev: {
inherit (channels.nixpkgs-unstable) opencode;
inherit
(channels.nixpkgs-unstable)
opencode
presenterm
;
}