forked from mirrors/nixpkgs
24 lines
588 B
Nix
24 lines
588 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "cliphist";
|
|
version = "0.3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sentriz";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-fx33m7DCp5N9VGI/H/IO66ECdFLobRRAAuRGNu4gzSk=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-UrKSDvskGwHjwkb/fjvaJZ8xXFD98BFeSJxwJpc8A+M=";
|
|
|
|
meta = with lib; {
|
|
description = "Wayland clipboard manager";
|
|
homepage = "https://github.com/sentriz/cliphist";
|
|
license = licenses.gpl3Only;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ dit7ya ];
|
|
};
|
|
}
|