mirror of
https://github.com/nmasur/dotfiles
synced 2025-02-25 15:22:03 +00:00
27 lines
402 B
Nix
27 lines
402 B
Nix
# Clipboard over SSH
|
|
|
|
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
...
|
|
}:
|
|
|
|
buildGoModule {
|
|
pname = "osc";
|
|
version = "v0.4.6";
|
|
src = fetchFromGitHub {
|
|
owner = "theimpostor";
|
|
repo = "osc";
|
|
rev = "4af7c8e54ecc499097121909f02ecb42a8a60d24";
|
|
sha256 = lib.fakeSha256;
|
|
};
|
|
|
|
vendorHash = "sha256-POtQWIjPObsfa3YZ1dLZgedZFUcc4HeTWjU20AucoKc=";
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
];
|
|
}
|