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/development/tools/chefdk/default.nix
Normal file
23
pkgs/development/tools/chefdk/default.nix
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{ lib, bundlerEnv, bundlerUpdateScript, ruby, perl, autoconf }:
|
||||
|
||||
bundlerEnv {
|
||||
name = "chef-dk-4.13.3";
|
||||
# Do not change this to pname & version until underlying issues with Ruby
|
||||
# packaging are resolved ; see https://github.com/NixOS/nixpkgs/issues/70171
|
||||
|
||||
inherit ruby;
|
||||
gemdir = ./.;
|
||||
|
||||
buildInputs = [ perl autoconf ];
|
||||
|
||||
passthru.updateScript = bundlerUpdateScript "chefdk";
|
||||
|
||||
meta = with lib; {
|
||||
description = "A streamlined development and deployment workflow for Chef platform";
|
||||
homepage = "https://downloads.chef.io/chef-dk/";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ offline nicknovitski ];
|
||||
platforms = platforms.unix;
|
||||
badPlatforms = [ "aarch64-linux" ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue