hound: cherry-pick conf check flag

This commit is contained in:
Marcel 2024-06-24 21:54:02 +02:00
parent f537bc4531
commit 81b8f02ce4
No known key found for this signature in database
GPG Key ID: 446F3B093DF81C6A

View File

@ -6,6 +6,7 @@
, git
, openssh
, nixosTests
, fetchpatch
}:
buildGoModule rec {
@ -19,6 +20,19 @@ buildGoModule rec {
sha256 = "sha256-Qdk57zLjTXLdDEmB6K+sZAym5s0BekJJa/CpYeOBOcY=";
};
patches = [
# add check config flag
# https://github.com/hound-search/hound/pull/485/files
(fetchpatch {
url = "https://github.com/MarcelCoding/hound/commit/b2f1cef335eff235394de336593687236a3b88bb.patch";
hash = "sha256-3+EBvnA8JIx2P6YM+8LpojDIX7hNXJ0vwVN4oSAouZ4=";
})
(fetchpatch {
url = "https://github.com/MarcelCoding/hound/commit/f917a457570ad8659d02fca4311cc91cadcadc00.patch";
hash = "sha256-CGvcIoSbgiayli5B8JRjvGfLuH2fscNpNTEm7xwkfpo=";
})
];
vendorHash = "sha256-0psvz4bnhGuwwSAXvQp0ju0GebxoUyY2Rjp/D43KF78=";
nativeBuildInputs = [ makeWrapper ];