Unverified Commit cb9e479f authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

clyp: init at 0.9.6 (#489329)

parents b3886a8b d28265ec
Loading
Loading
Loading
Loading
+43 −0
Original line number Diff line number Diff line
{
  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";
  };
})