nixpkgs/pkgs/applications/networking/circumflex/default.nix

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

31 lines
800 B
Nix
Raw Normal View History

2022-10-19 20:26:29 +00:00
{ lib, less, ncurses, buildGoModule, fetchFromGitHub, makeWrapper }:
buildGoModule rec {
pname = "circumflex";
2024-04-01 13:14:39 +00:00
version = "3.6";
2022-10-19 20:26:29 +00:00
src = fetchFromGitHub {
owner = "bensadeh";
repo = "circumflex";
rev = version;
2024-04-01 13:14:39 +00:00
hash = "sha256-FzJUmF2X4Iyf83cIEa8b8EFCcWUyYEZBVyvXuhiaaWM=";
2022-10-19 20:26:29 +00:00
};
2024-04-01 13:14:39 +00:00
vendorHash = "sha256-x/NgcodS/hirXJHxBHeUP9MgOBHq1yQWHprMrlpqsas=";
2022-10-19 20:26:29 +00:00
nativeBuildInputs = [ makeWrapper ];
postInstall = ''
wrapProgram $out/bin/clx \
--prefix PATH : ${lib.makeBinPath [ less ncurses ]}
'';
meta = with lib; {
description = "A command line tool for browsing Hacker News in your terminal";
homepage = "https://github.com/bensadeh/circumflex";
2024-03-19 12:26:06 +00:00
license = licenses.agpl3Only;
2022-10-19 20:27:04 +00:00
maintainers = with maintainers; [ mktip ];
2022-10-19 20:26:29 +00:00
mainProgram = "clx";
};
}