about summary refs log tree commit diff
path: root/overlays
diff options
context:
space:
mode:
Diffstat (limited to 'overlays')
-rw-r--r--overlays/base.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/overlays/base.nix b/overlays/base.nix
index 8685995..681fa64 100644
--- a/overlays/base.nix
+++ b/overlays/base.nix
@@ -42,4 +42,23 @@ final: prev:
       };
     };
   };
+
+  kcc = prev.kcc.overrideAttrs (oldAttrs: {
+    version = "5.5.2";
+    src = prev.fetchFromGitHub {
+      owner = "ciromattia";
+      repo = "kcc";
+      rev = "4ec4c9966c727d6dac44507d34607bd7d2c5ed5c";
+      sha256 = "sha256-vH3Cz7nL+sStogcCRLcN30Iap25f5hylXHECX52G4f0=";
+    };
+    patches = [
+      ../patches/kcc.patch
+      (prev.fetchpatch
+        {
+          url = "https://github.com/Baitinq/kcc/commit/73cd0dd107901bebe7d72e2b86ecf8b830a19758.diff";
+          sha256 = "sha256-UsWTwujCmKsFrPUHIx8O8ELHpXFQdEbBRZh5SbPPWBM=";
+        })
+    ];
+  });
+
 }