Unverified Commit 3e32c07b authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

tpi: init at 1.0.6 (#349522)

parents 5bc90efc 56f7815a
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -23299,6 +23299,12 @@
    githubId = 28888242;
    name = "WORLDofPEACE";
  };
  WoutSwinkels = {
    name = "Wout Swinkels";
    email = "nixpkgs@woutswinkels.com";
    github = "WoutSwinkels";
    githubId = 113464111;
  };
  wozeparrot = {
    email = "wozeparrot@gmail.com";
    github = "wozeparrot";
+26 −0
Original line number Diff line number Diff line
{
  rustPlatform,
  fetchFromGitHub,
  lib,
}:
rustPlatform.buildRustPackage rec {
  pname = "tpi";
  version = "1.0.6";

  src = fetchFromGitHub {
    owner = "turing-machines";
    repo = "tpi";
    rev = "v${version}";
    hash = "sha256-rkqkb3iJL4obHjTkGEUbVPJmUmfT9KKP4yoQ71cbpKs=";
  };

  cargoHash = "sha256-hSWDr1XuD6x96QV2QIdhGPQ00Sg7G5O5bkFNTdUx0ug=";

  meta = {
    description = "CLI tool to control your Turing Pi 2 board";
    homepage = "https://github.com/turing-machines/tpi";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ WoutSwinkels ];
    mainProgram = "tpi";
  };
}