2021-06-05 16:09:29 +00:00
|
|
|
{ lib, buildGoModule, fetchFromSourcehut, installShellFiles, scdoc }:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "senpai";
|
2023-04-09 17:21:02 +00:00
|
|
|
version = "0.2.0";
|
2021-06-05 16:09:29 +00:00
|
|
|
|
|
|
|
src = fetchFromSourcehut {
|
|
|
|
owner = "~taiite";
|
|
|
|
repo = "senpai";
|
2023-04-09 17:21:02 +00:00
|
|
|
rev = "v${version}";
|
2023-02-16 13:35:30 +00:00
|
|
|
sha256 = "sha256-q167og8S8YbLcREZ7DVbJhjMzx4iO0WgIFkOV2IpieM=";
|
2021-06-05 16:09:29 +00:00
|
|
|
};
|
|
|
|
|
2023-01-16 04:53:40 +00:00
|
|
|
vendorSha256 = "sha256-PkoEHQEGKCiNbJsm7ieL65MtEult/wubLreJKA1gGpg=";
|
2021-06-05 16:09:29 +00:00
|
|
|
|
|
|
|
subPackages = [
|
|
|
|
"cmd/senpai"
|
|
|
|
];
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
scdoc
|
|
|
|
installShellFiles
|
|
|
|
];
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
scdoc < doc/senpai.1.scd > doc/senpai.1
|
|
|
|
scdoc < doc/senpai.5.scd > doc/senpai.5
|
|
|
|
installManPage doc/senpai.*
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Your everyday IRC student";
|
2023-04-11 03:43:30 +00:00
|
|
|
homepage = "https://sr.ht/~taiite/senpai/";
|
2021-06-05 16:09:29 +00:00
|
|
|
license = licenses.isc;
|
2023-02-05 14:05:51 +00:00
|
|
|
maintainers = with maintainers; [ malte-v ];
|
2021-06-05 16:09:29 +00:00
|
|
|
};
|
|
|
|
}
|