nixpkgs/pkgs/applications/networking/feedreaders/tuifeed/default.nix

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

30 lines
636 B
Nix
Raw Normal View History

2022-08-20 16:11:40 +03:00
{ lib
, stdenv
, fetchCrate
, rustPlatform
, Security
}:
rustPlatform.buildRustPackage rec {
pname = "tuifeed";
2022-09-02 16:05:37 +03:00
version = "0.3.2";
2022-08-20 16:11:40 +03:00
src = fetchCrate {
inherit pname version;
2022-09-02 16:05:37 +03:00
sha256 = "sha256-JG/l6NfN5RqBpz9NVcVY3mP/iE31TXvw+Vjq8N8rNIY=";
2022-08-20 16:11:40 +03:00
};
2022-09-02 16:05:37 +03:00
cargoHash = "sha256-QKSNbpVRtSKp2q1jVPYTS8XCMtQAyg3AWvD/6+OjI7Y=";
2022-08-20 16:11:40 +03:00
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
doCheck = false;
meta = with lib; {
description = "A terminal feed reader with a fancy UI";
homepage = "https://github.com/veeso/tuifeed";
license = with licenses; [ mit ];
maintainers = with maintainers; [ devhell ];
};
}