add osc for copy paste over ssh

This commit is contained in:
Noah Masur
2024-11-16 23:47:26 +00:00
parent ae43d24f62
commit ca1c7cc23f
4 changed files with 41 additions and 0 deletions

15
overlays/osc.nix Normal file
View File

@ -0,0 +1,15 @@
inputs: _final: prev: {
osc = prev.buildGoModule {
pname = "osc";
version = "v0.4.4";
src = inputs.osc;
vendorHash = "sha256-VEzVd1LViMtqhQaltvGuupEemV/2ewMuVYjGbKOi0iw=";
ldflags = [
"-s"
"-w"
];
};
}