diff options
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="; + }); +} |