diff options
| author | Fuwn <[email protected]> | 2024-10-17 23:43:44 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-10-17 23:43:44 -0700 |
| commit | 46e66e3c1dc663f566585e70adcf5aeed8884817 (patch) | |
| tree | 81cc4f1e7917cf0bfe394ded8d7262f69f8be8f3 /overlays | |
| parent | pc: add mplab x (diff) | |
| download | nixos-config-46e66e3c1dc663f566585e70adcf5aeed8884817.tar.xz nixos-config-46e66e3c1dc663f566585e70adcf5aeed8884817.zip | |
flake: bump nixpkgs
Diffstat (limited to 'overlays')
| -rw-r--r-- | overlays/cliphist.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/overlays/cliphist.nix b/overlays/cliphist.nix new file mode 100644 index 0000000..abbe5bf --- /dev/null +++ b/overlays/cliphist.nix @@ -0,0 +1,12 @@ +final: prev: { + cliphist = prev.cliphist.overrideAttrs (_old: { + src = final.fetchFromGitHub { + owner = "sentriz"; + repo = "cliphist"; + rev = "c49dcd26168f704324d90d23b9381f39c30572bd"; + sha256 = "sha256-2mn55DeF8Yxq5jwQAjAcvZAwAg+pZ4BkEitP6S2N0HY="; + }; + + vendorHash = "sha256-M5n7/QWQ5POWE4hSCMa0+GOVhEDCOILYqkSYIGoy/l0="; + }); +} |