nixpkgs/pkgs/tools/misc/moar/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
757 B
Nix
Raw Normal View History

2022-11-15 04:06:12 +00:00
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
buildGoModule rec {
pname = "moar";
2023-01-01 07:17:43 +00:00
version = "1.11.2";
2022-11-15 04:06:12 +00:00
src = fetchFromGitHub {
owner = "walles";
repo = pname;
rev = "v${version}";
2023-01-01 07:17:43 +00:00
sha256 = "sha256-UzgGJrnckiuUT4JYSTQ4TargO4B2sjVMMOYygg7wGps=";
2022-11-15 04:06:12 +00:00
};
2023-01-01 07:17:43 +00:00
vendorSha256 = "sha256-XexIBg49gK+b2Zef5eR7NfqFZHPp5DXhlcC3Loh6PfI=";
2022-11-15 04:06:12 +00:00
nativeBuildInputs = [ installShellFiles ];
postInstall = ''
installManPage ./moar.1
'';
ldflags = [
"-s" "-w"
"-X" "main.versionString=v${version}"
];
2022-11-15 04:06:12 +00:00
meta = with lib; {
description = "Nice-to-use pager for humans";
homepage = "https://github.com/walles/moar";
license = licenses.bsd2WithViews;
maintainers = with maintainers; [ foo-dogsquared ];
};
}