nixpkgs/pkgs/applications/misc/tickrs/default.nix

27 lines
691 B
Nix
Raw Normal View History

{ lib, stdenv, rustPlatform, fetchFromGitHub, perl, Security }:
2020-11-27 10:32:36 -08:00
rustPlatform.buildRustPackage rec {
pname = "tickrs";
2021-02-06 14:04:30 -08:00
version = "0.9.0";
2020-11-27 10:32:36 -08:00
src = fetchFromGitHub {
owner = "tarkah";
repo = pname;
rev = "v${version}";
2021-02-06 14:04:30 -08:00
sha256 = "sha256-FCELPt7aBKD+mf5w9HuJqKPw64qBLgdbLIfGZEB19OI=";
2020-11-27 10:32:36 -08:00
};
2021-02-06 14:04:30 -08:00
cargoSha256 = "sha256-GsK0T9BfIqr0N4wxIhvvTmNEC6I2j3XPeAJMJjRiZKU=";
2020-11-27 10:32:36 -08:00
nativeBuildInputs = [ perl ];
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
meta = with lib; {
2020-11-27 10:32:36 -08:00
description = "Realtime ticker data in your terminal";
homepage = "https://github.com/tarkah/tickrs";
license = licenses.mit;
maintainers = with maintainers; [ mredaelli ];
};
}