summaryrefslogtreecommitdiffstats
path: root/pkgs/applications
diff options
context:
space:
mode:
authorMassimo Redaelli <massimo@typish.io>2020-11-27 19:32:36 +0100
committerMassimo Redaelli <massimo@typish.io>2020-11-27 20:09:49 +0100
commitc5d585bab57912abe8ecda2860c41c86a1fb809d (patch)
tree73ca9fa78cdfdffef98820034624ddb20a9b3166 /pkgs/applications
parent4c123fce1d50e296a0cc85a678a1d898e08f81a0 (diff)
tickrs: init at 0.7.1
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/misc/tickrs/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/applications/misc/tickrs/default.nix b/pkgs/applications/misc/tickrs/default.nix
new file mode 100644
index 000000000000..754de71f1ae7
--- /dev/null
+++ b/pkgs/applications/misc/tickrs/default.nix
@@ -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 ];
+ };
+}