uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
27
pkgs/tools/admin/trinsic-cli/default.nix
Normal file
27
pkgs/tools/admin/trinsic-cli/default.nix
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{ lib, stdenv, rustPlatform, fetchurl, Security }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "trinsic-cli";
|
||||
version = "1.4.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/trinsic-id/sdk/releases/download/v${version}/trinsic-cli-vendor-${version}.tar.gz";
|
||||
sha256 = "sha256-Dxmjbd1Q2JNeET22Fte7bygd+oH3ZfovRTJh5xforuw=";
|
||||
};
|
||||
|
||||
cargoVendorDir = "vendor";
|
||||
doCheck = false;
|
||||
|
||||
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Trinsic CLI";
|
||||
longDescription = ''
|
||||
Command line interface for Trinsic Ecosystems
|
||||
'';
|
||||
homepage = "https://trinsic.id/";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ tmarkovski ];
|
||||
mainProgram = "trinsic";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue