snippetexpander: 1.0.3 -> 1.1.2 (#553564)

This commit is contained in:
Peder Bergebakken Sundt
2026-08-24 21:24:28 +00:00
committed by GitHub
3 changed files with 8 additions and 8 deletions

View File

@@ -13,7 +13,7 @@ buildGoModule (finalAttrs: {
pname = "snippetexpander";
vendorHash = "sha256-2nLO/b6XQC88VXE+SewhgKpkRtIHsva+fDudgKpvZiY=";
vendorHash = "sha256-1ofkbbitCzrLxugi769jbjOD2iN0Z6kYC5d7X2GYNIg=";
proxyVendor = true;

View File

@@ -13,16 +13,16 @@
buildGoModule (finalAttrs: {
pname = "snippetexpanderd";
version = "1.0.3";
version = "1.1.2";
src = fetchFromSourcehut {
owner = "~ianmjones";
repo = "snippetexpander";
rev = "v${finalAttrs.version}";
hash = "sha256-NIMuACrq8RodtjeBbBY42VJ8xqj7fZvdQ2w/5QsjjJI=";
hash = "sha256-L+3Zn4z48ZqoVH38oxKg2BkhCTGynsIofQqMDzkfha4=";
};
vendorHash = "sha256-2nLO/b6XQC88VXE+SewhgKpkRtIHsva+fDudgKpvZiY=";
vendorHash = "sha256-1ofkbbitCzrLxugi769jbjOD2iN0Z6kYC5d7X2GYNIg=";
proxyVendor = true;

View File

@@ -12,12 +12,12 @@
snippetexpanderx,
}:
buildGoModule rec {
buildGoModule (finalAttrs: {
inherit (snippetexpanderd) src version;
pname = "snippetexpandergui";
vendorHash = "sha256-2nLO/b6XQC88VXE+SewhgKpkRtIHsva+fDudgKpvZiY=";
vendorHash = "sha256-1ofkbbitCzrLxugi769jbjOD2iN0Z6kYC5d7X2GYNIg=";
proxyVendor = true;
@@ -41,7 +41,7 @@ buildGoModule rec {
ldflags = [
"-s"
"-w"
"-X 'main.version=${src.rev}'"
"-X 'main.version=${finalAttrs.src.rev}'"
];
tags = [
@@ -77,4 +77,4 @@ buildGoModule rec {
platforms = lib.platforms.linux;
mainProgram = "snippetexpandergui";
};
}
})