diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-06-18 21:24:23 +0200 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-06-18 21:24:23 +0200 |
commit | b50b96496620d855f71c441a20f2b30344795329 (patch) | |
tree | 36f5ec8ea283caf6bac5cae531457f47ad7ce883 /overlays | |
parent | Switched from ssh-agent to gpg-agent (diff) | |
download | nixos-config-b50b96496620d855f71c441a20f2b30344795329.tar.gz nixos-config-b50b96496620d855f71c441a20f2b30344795329.tar.bz2 nixos-config-b50b96496620d855f71c441a20f2b30344795329.zip |
Added patched kcc and kindlegen
Diffstat (limited to 'overlays')
-rw-r--r-- | overlays/base.nix | 19 |
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="; + }) + ]; + }); + } |