summaryrefslogtreecommitdiffstats
path: root/pkgs
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2024-06-28 22:57:59 +0200
committerGitHub <noreply@github.com>2024-06-28 22:57:59 +0200
commit0cbf178ddbe837e9ede282038cbdc585e5ee7490 (patch)
tree6810bd1b0e7b3c8529d9917086bd2115d43eb743 /pkgs
parent4e15c4a8ad30c02d6c2614565600865aec80edca (diff)
parentccd042b9695d0afbe62a5f9f8bd484b0eb2556d5 (diff)
Merge pull request #322508 from MarcelCoding/hound
hound: convert to use freeform type
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/tools/misc/hound/default.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/pkgs/development/tools/misc/hound/default.nix b/pkgs/development/tools/misc/hound/default.nix
index b906456116c5..6e3124556f54 100644
--- a/pkgs/development/tools/misc/hound/default.nix
+++ b/pkgs/development/tools/misc/hound/default.nix
@@ -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 ];