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
50
pkgs/tools/security/solo2-cli/default.nix
Normal file
50
pkgs/tools/security/solo2-cli/default.nix
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, rustPlatform
|
||||
, fetchFromGitHub
|
||||
, installShellFiles
|
||||
, pkg-config
|
||||
, pcsclite
|
||||
, udev
|
||||
, PCSC
|
||||
, IOKit
|
||||
, CoreFoundation
|
||||
, AppKit
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "solo2-cli";
|
||||
version = "0.1.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "solokeys";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-3GIK0boxGD4Xa5OskP1535zCQyhMQ/oXbgThRivJzww=";
|
||||
};
|
||||
|
||||
cargoSha256 = "sha256-MYxVegXUVeZ4AzDz+Si5TtTjUDEPTO0Nh008rgLtsLw=";
|
||||
|
||||
nativeBuildInputs = [ installShellFiles pkg-config ];
|
||||
|
||||
buildInputs = [ ]
|
||||
++ lib.optionals stdenv.isLinux [ pcsclite udev ]
|
||||
++ lib.optionals stdenv.isDarwin [ PCSC IOKit CoreFoundation AppKit ];
|
||||
|
||||
postInstall = ''
|
||||
install -D 70-solo2.rules $out/lib/udev/rules.d/70-solo2.rules
|
||||
installShellCompletion target/*/release/solo2.{bash,fish,zsh}
|
||||
'';
|
||||
|
||||
doCheck = true;
|
||||
|
||||
buildFeatures = [ "cli" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A CLI tool for managing SoloKeys' Solo2 USB security keys.";
|
||||
homepage = "https://github.com/solokeys/solo2-cli";
|
||||
license = with licenses; [ asl20 mit ]; # either at your option
|
||||
maintainers = with maintainers; [ lukegb ];
|
||||
mainProgram = "solo2";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue