mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 16:53:21 +00:00
29 lines
681 B
Nix
29 lines
681 B
Nix
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
|
|
|
|
buildGoModule rec {
|
|
pname = "moar";
|
|
version = "1.10.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "walles";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-cFXUspVSCUy0q5CW8K+YL/LBpK87qlPys8hg6AYvg5M=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-RfkY66879Us0UudplMzW8xEC1zs+2OXwyB+nBim3I0I=";
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
postInstall = ''
|
|
installManPage ./moar.1
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Nice-to-use pager for humans";
|
|
homepage = "https://github.com/walles/moar";
|
|
license = licenses.bsd2WithViews;
|
|
maintainers = with maintainers; [ foo-dogsquared ];
|
|
};
|
|
}
|