3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/misc/tickrs/default.nix

27 lines
692 B
Nix
Raw Normal View History

{ lib, stdenv, rustPlatform, fetchFromGitHub, perl, Security }:
2020-11-27 18:32:36 +00:00
rustPlatform.buildRustPackage rec {
pname = "tickrs";
2021-02-23 11:22:06 +00:00
version = "0.13.1";
2020-11-27 18:32:36 +00:00
src = fetchFromGitHub {
owner = "tarkah";
repo = pname;
rev = "v${version}";
2021-02-23 11:22:06 +00:00
sha256 = "sha256-PGJztoGVIjUwx4x42LdpxJQMZH60x6JWY+yTHQgjHWM=";
2020-11-27 18:32:36 +00:00
};
2021-02-23 11:22:06 +00:00
cargoSha256 = "sha256-0NNdo28fLoqwKXBQ1fBTKPGE/zE7pnWnIjgCITsaGJc=";
2020-11-27 18:32:36 +00:00
nativeBuildInputs = [ perl ];
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
meta = with lib; {
2020-11-27 18:32:36 +00:00
description = "Realtime ticker data in your terminal";
homepage = "https://github.com/tarkah/tickrs";
license = licenses.mit;
maintainers = with maintainers; [ mredaelli ];
};
}