Fix version and rev drift in agent-shell derivation

This commit is contained in:
Tobias Ostner 2026-04-28 19:11:38 +02:00
parent c4dd04d34b
commit 2c9743eabb

View file

@ -1,13 +1,16 @@
{ pkgs, final }:
let
rev = "v0.50.1";
in
final.melpaBuild {
pname = "agent-shell";
ename = "agent-shell";
version = "0.47.3";
version = pkgs.lib.removePrefix "v" rev;
src = pkgs.fetchFromGitHub {
owner = "xenodium";
repo = "agent-shell";
rev = "v0.50.1";
inherit rev;
hash = "sha256-y3WKd7w9zNebNlP3phMLmMbrFd+MHqwwJH/dUP6VSlo=";
};