mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
tickrs: init at 0.7.1
This commit is contained in:
parent
4c123fce1d
commit
c5d585bab5
2 changed files with 26 additions and 0 deletions
24
pkgs/applications/misc/tickrs/default.nix
Normal file
24
pkgs/applications/misc/tickrs/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{ stdenv, rustPlatform, fetchFromGitHub, perl }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "tickrs";
|
||||
version = "0.7.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "tarkah";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "159smcjrf5193yijfpvy1g9b1gin72xwbjghfyrrphwscwhb215z";
|
||||
};
|
||||
|
||||
cargoSha256 = "1s95b3x7vs1z8xs7j6j80y6mfpy5bdgnzmzn3qa9zr6cghabbf6n";
|
||||
|
||||
nativeBuildInputs = [ perl ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Realtime ticker data in your terminal";
|
||||
homepage = "https://github.com/tarkah/tickrs";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ mredaelli ];
|
||||
};
|
||||
}
|
|
@ -24080,6 +24080,8 @@ in
|
|||
|
||||
ticpp = callPackage ../development/libraries/ticpp { };
|
||||
|
||||
tickrs = callPackage ../applications/misc/tickrs { };
|
||||
|
||||
tig = gitAndTools.tig;
|
||||
|
||||
timbreid = callPackage ../applications/audio/pd-plugins/timbreid {
|
||||
|
|
Loading…
Reference in a new issue