mempool: fix version

Remove `v` prefix of mempool drv versions: `v2.5.0` -> `2.5.0`
This commit is contained in:
Erik Arvstedt 2025-06-02 10:32:32 +02:00
parent a06d1d8118
commit c48b99782d
No known key found for this signature in database
GPG key ID: 33312B944DD97846
2 changed files with 6 additions and 5 deletions

View file

@ -40,9 +40,9 @@ updateSrc() {
hash=$(nix hash path "$src")
sed -i "
s|\bversion = .*;|version = \"$version\";|
s|\bowner = .*;|owner = \"$owner\";|
s|\brev = .*;|rev = \"$rev\";|
s|\bhash = .*;|hash = \"$hash\";|
/fetchFromGitHub/,/hash/ s|\bhash = .*;|hash = \"$hash\";|
" default.nix
}