nixpkgs/pkgs/tools/wayland/cliphist/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
616 B
Nix
Raw Normal View History

2021-09-22 18:54:56 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "cliphist";
2024-02-09 06:00:11 +00:00
version = "0.5.0";
2021-09-22 18:54:56 +00:00
src = fetchFromGitHub {
owner = "sentriz";
repo = pname;
rev = "v${version}";
2024-02-09 06:00:11 +00:00
sha256 = "sha256-U78G7X9x3GQg3qcBINni8jWa0wSXQu+TjYChuRPPcLE=";
2021-09-22 18:54:56 +00:00
};
2024-02-09 06:00:11 +00:00
vendorHash = "sha256-O4jOFWygmFxm8ydOq1xtB1DESyWpFGXeSp8a6tT+too=";
2021-09-22 18:54:56 +00:00
meta = with lib; {
description = "Wayland clipboard manager";
homepage = "https://github.com/sentriz/cliphist";
license = licenses.gpl3Only;
platforms = platforms.linux;
maintainers = with maintainers; [ dit7ya ];
2023-08-16 18:57:35 +00:00
mainProgram = "cliphist";
2021-09-22 18:54:56 +00:00
};
}