nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 19.03 20 lines 540 B view raw
1{ lib, bundlerEnv, ruby_2_4, perl, autoconf }: 2 3bundlerEnv { 4 # Last updated via: 5 # nix-shell -p bundix -p gcc -p libxml2 -p zlib --run "bundix -mdl" 6 name = "chefdk-2.4.17"; 7 8 ruby = ruby_2_4; 9 gemdir = ./.; 10 11 buildInputs = [ perl autoconf ]; 12 13 meta = with lib; { 14 description = "A streamlined development and deployment workflow for Chef platform"; 15 homepage = https://downloads.chef.io/chef-dk/; 16 license = licenses.asl20; 17 maintainers = with maintainers; [ offline ]; 18 platforms = platforms.unix; 19 }; 20}