fe9cdc468a
clipse: 0.0.6 -> 0.0.71 clipse: 0.0.6 -> 0.0.71 clipse: 0.0.6 -> 0.0.71
26 lines
584 B
Nix
26 lines
584 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "clipse";
|
|
version = "0.0.71";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "savedra1";
|
|
repo = "clipse";
|
|
rev = "v${version}";
|
|
hash = "sha256-88GuYGJO5AgWae6LyMO/TpGqtk2yS7pDPS0MkgmJUQ4=";
|
|
};
|
|
|
|
vendorHash = "sha256-GIUEx4h3xvLySjBAQKajby2cdH8ioHkv8aPskHN0V+w=";
|
|
|
|
meta = {
|
|
description = "Useful clipboard manager TUI for Unix";
|
|
homepage = "https://github.com/savedra1/clipse";
|
|
license = lib.licenses.mit;
|
|
mainProgram = "clipse";
|
|
maintainers = [ lib.maintainers.savedra1 ];
|
|
};
|
|
}
|