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
23
pkgs/tools/misc/loop/default.nix
Normal file
23
pkgs/tools/misc/loop/default.nix
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{ lib, fetchFromGitHub, rustPlatform }:
|
||||
|
||||
rustPlatform.buildRustPackage {
|
||||
pname = "loop";
|
||||
version = "unstable-2020-07-08";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Miserlou";
|
||||
repo = "Loop";
|
||||
rev = "944df766ddecd7a0d67d91cc2dfda8c197179fb0";
|
||||
sha256 = "0v61kahwk1kdy8pb40rjnzcxby42nh02nyg9jqqpx3vgdrpxlnix";
|
||||
};
|
||||
|
||||
cargoSha256 = "0pk6hwmzs58vgbkvmlpa4s4cd29izp6xq17zaix5v2didbzr5ixi";
|
||||
|
||||
meta = with lib; {
|
||||
description = "UNIX's missing `loop` command";
|
||||
homepage = "https://github.com/Miserlou/Loop";
|
||||
maintainers = with maintainers; [ koral ];
|
||||
license = licenses.mit;
|
||||
mainProgram = "loop";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue