From d28265ec7e602001449b3adbd40be2d50135335b Mon Sep 17 00:00:00 2001 From: Mica Semrick Date: Tue, 10 Feb 2026 21:55:30 -0800 Subject: [PATCH] clyp: init at 0.9.6 --- pkgs/by-name/cl/clyp/package.nix | 43 ++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 pkgs/by-name/cl/clyp/package.nix diff --git a/pkgs/by-name/cl/clyp/package.nix b/pkgs/by-name/cl/clyp/package.nix new file mode 100644 index 000000000000..227c72be1d0e --- /dev/null +++ b/pkgs/by-name/cl/clyp/package.nix @@ -0,0 +1,43 @@ +{ + lib, + buildGoModule, + fetchFromGitHub, + pkg-config, + wrapGAppsHook4, + gobject-introspection, + gtk4, +}: + +buildGoModule (finalAttrs: { + pname = "clyp"; + version = "0.9.6"; + + src = fetchFromGitHub { + owner = "murat-cileli"; + repo = "clyp"; + tag = finalAttrs.version; + hash = "sha256-7M5LlZKDfY/z8lBfEYeChQprkRRRfOZ3IIn5QuEdQJI="; + }; + + vendorHash = null; + + nativeBuildInputs = [ + pkg-config + wrapGAppsHook4 + ]; + + buildInputs = [ + gobject-introspection + gtk4 + ]; + + ldflags = [ "-s" ]; + + meta = { + description = "Clipboard manager for Linux"; + homepage = "https://github.com/murat-cileli/clyp"; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ paperdigits ]; + mainProgram = "clyp"; + }; +})