b83691323a
https://github.com/yory8/clipman/releases/tag/v1.0.2 https://github.com/yory8/clipman/releases/tag/v1.1.0
31 lines
772 B
Nix
31 lines
772 B
Nix
{ buildGoModule, fetchFromGitHub, lib, wl-clipboard, makeWrapper }:
|
|
|
|
buildGoModule rec {
|
|
pname = "clipman";
|
|
version = "1.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "yory8";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "083wd9wqsvxsf3w72jqh36php3c85273n3c6j7j997w47k069m32";
|
|
};
|
|
|
|
modSha256 = "0r7bx2vxnjqs4lx17w7q75spdjh3dz4560d62bj6fb5n71hc5mgv";
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/clipman \
|
|
--prefix PATH : ${lib.makeBinPath [ wl-clipboard ]}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = https://github.com/yory8/clipman;
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ ma27 ];
|
|
description = "A simple clipboard manager for Wayland";
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|