6d4aeb4377
GitOrigin-RevId: 0f213d0fee84280d8c3a97f7469b988d6fe5fcdf
33 lines
757 B
Nix
33 lines
757 B
Nix
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
|
|
|
|
buildGoModule rec {
|
|
pname = "moar";
|
|
version = "1.11.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "walles";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-Op9A0C1MnVoNyxTEKARASrKDTIT/vNa01Bnww6BWg0Y=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-XexIBg49gK+b2Zef5eR7NfqFZHPp5DXhlcC3Loh6PfI=";
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
postInstall = ''
|
|
installManPage ./moar.1
|
|
'';
|
|
|
|
ldflags = [
|
|
"-s" "-w"
|
|
"-X" "main.versionString=v${version}"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Nice-to-use pager for humans";
|
|
homepage = "https://github.com/walles/moar";
|
|
license = licenses.bsd2WithViews;
|
|
maintainers = with maintainers; [ foo-dogsquared ];
|
|
};
|
|
}
|