depot/pkgs/applications/networking/feedreaders/tuifeed/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

30 lines
674 B
Nix

{ lib
, stdenv
, fetchCrate
, rustPlatform
, Security
}:
rustPlatform.buildRustPackage rec {
pname = "tuifeed";
version = "0.3.2";
src = fetchCrate {
inherit pname version;
hash = "sha256-JG/l6NfN5RqBpz9NVcVY3mP/iE31TXvw+Vjq8N8rNIY=";
};
cargoHash = "sha256-QKSNbpVRtSKp2q1jVPYTS8XCMtQAyg3AWvD/6+OjI7Y=";
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ Security ];
doCheck = false;
meta = with lib; {
description = "Terminal feed reader with a fancy UI";
mainProgram = "tuifeed";
homepage = "https://github.com/veeso/tuifeed";
license = with licenses; [ mit ];
maintainers = with maintainers; [ devhell ];
};
}