Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 bundlerEnv, 4 ruby, 5 bundlerUpdateScript, 6}: 7 8bundlerEnv rec { 9 pname = "elm_install"; 10 name = "elm-github-install-${version}"; 11 12 version = (import ./gemset.nix).elm_install.version; 13 14 inherit ruby; 15 gemdir = ./.; 16 17 passthru.updateScript = bundlerUpdateScript "elm-github-install"; 18 19 meta = with lib; { 20 description = "Install Elm packages from git repositories"; 21 homepage = "https://github.com/gdotdesign/elm-github-install"; 22 license = licenses.unfree; 23 maintainers = with maintainers; [ 24 roberth 25 nicknovitski 26 ]; 27 platforms = platforms.all; 28 mainProgram = "elm-install"; 29 }; 30}