mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 00:43:20 +00:00
tpi: init at 1.0.6
This commit is contained in:
parent
b2bae9f0c6
commit
56f7815a1f
26
pkgs/by-name/tp/tpi/package.nix
Normal file
26
pkgs/by-name/tp/tpi/package.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{
|
||||
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";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user