clyp: init at 0.9.6 (#489329)

This commit is contained in:
Sandro
2026-04-07 01:00:56 +00:00
committed by GitHub
+43
View File
@@ -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";
};
})