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
28
pkgs/development/tools/misc/itm-tools/default.nix
Normal file
28
pkgs/development/tools/misc/itm-tools/default.nix
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{ lib, fetchFromGitHub, rustPlatform, pkg-config }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "itm-tools";
|
||||
version = "unstable-2019-11-15";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "japaric";
|
||||
repo = pname;
|
||||
rev = "e94155e44019d893ac8e6dab51cc282d344ab700";
|
||||
sha256 = "19xkjym0i7y52cfhvis49c59nzvgw4906cd8bkz8ka38mbgfqgiy";
|
||||
};
|
||||
|
||||
cargoPatches = [ ./cargo-lock.patch ];
|
||||
|
||||
cargoSha256 = "1hqv530x8k4rf9zzyl5p5z58bymk1p4qwrcxs21gr0zm2hqjlxy4";
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Tools for analyzing ITM traces";
|
||||
homepage = "https://github.com/japaric/itm-tools";
|
||||
license = with licenses; [ asl20 mit ];
|
||||
maintainers = with maintainers; [ hh sb0 ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue