3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/wayland/cliphist/default.nix

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

24 lines
588 B
Nix
Raw Normal View History

2021-09-22 19:54:56 +01:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "cliphist";
2022-03-13 04:07:58 +00:00
version = "0.3.1";
2021-09-22 19:54:56 +01:00
src = fetchFromGitHub {
owner = "sentriz";
repo = pname;
rev = "v${version}";
2022-03-13 04:07:58 +00:00
sha256 = "sha256-kmXR8xzjAphgaC2Yd55VwZIJ4ehxP1LEA24hgyAbM7A=";
2021-09-22 19:54:56 +01:00
};
2022-03-13 04:07:58 +00:00
vendorSha256 = "sha256-LZnefa0FjYG39YJrSN9ef6OnXHXgSrlSL4LvRqLxFx4=";
2021-09-22 19:54:56 +01:00
meta = with lib; {
description = "Wayland clipboard manager";
homepage = "https://github.com/sentriz/cliphist";
license = licenses.gpl3Only;
platforms = platforms.linux;
maintainers = with maintainers; [ dit7ya ];
};
}