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/tools/admin/fastlane/default.nix
Normal file
28
pkgs/tools/admin/fastlane/default.nix
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{ lib, bundlerApp, bundlerUpdateScript, makeBinaryWrapper }:
|
||||
|
||||
bundlerApp {
|
||||
pname = "fastlane";
|
||||
gemdir = ./.;
|
||||
exes = [ "fastlane" ];
|
||||
|
||||
buildInputs = [ makeBinaryWrapper ];
|
||||
|
||||
postBuild = ''
|
||||
wrapProgram $out/bin/fastlane --set FASTLANE_SKIP_UPDATE_CHECK 1
|
||||
'';
|
||||
|
||||
passthru.updateScript = bundlerUpdateScript "fastlane";
|
||||
|
||||
meta = with lib; {
|
||||
description = "A tool to automate building and releasing iOS and Android apps";
|
||||
longDescription = "fastlane is a tool for iOS and Android developers to automate tedious tasks like generating screenshots, dealing with provisioning profiles, and releasing your application.";
|
||||
homepage = "https://github.com/fastlane/fastlane";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [
|
||||
peterromfeldhk
|
||||
nicknovitski
|
||||
shahrukh330
|
||||
marsam
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue