mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 03:30:45 +00:00
Merge pull request #320108 from NixOS/backport-316883-to-release-24.05
[Backport release-24.05] hn-text: init at 0.1.4
This commit is contained in:
commit
10a9d8c728
35
pkgs/by-name/hn/hn-text/package.nix
Normal file
35
pkgs/by-name/hn/hn-text/package.nix
Normal file
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
lib,
|
||||
buildGoModule,
|
||||
fetchFromGitHub,
|
||||
nix-update-script,
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "hn-text";
|
||||
version = "0.1.4";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "piqoni";
|
||||
repo = "hn-text";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-YoPdYuNlWrLITyd2XeCOeGy70Ews1rvtOQzYZAQTI+Y=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-lhghteKspXK1WSZ3dVHaTgx2BRx9S7yGNbvRYZKeA+s=";
|
||||
|
||||
ldflags = [
|
||||
"-s"
|
||||
"-w"
|
||||
];
|
||||
|
||||
passthru.updateScript = nix-update-script { };
|
||||
|
||||
meta = {
|
||||
description = "Fast, easy-to-use and distraction-free Hacker News terminal client";
|
||||
homepage = "https://github.com/piqoni/hn-text";
|
||||
license = lib.licenses.mit;
|
||||
mainProgram = "hn-text";
|
||||
maintainers = with lib.maintainers; [ Guanran928 ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue