chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / ba / bashly / package.nix
blob5a3d6661caa2d9f6bdb6bf614b8097d476010123
1 { lib
2 , stdenvNoCC
3 , bundlerApp
4 }:
6 let
7   bashlyBundlerApp = bundlerApp {
8     pname = "bashly";
9     gemdir = ./.;
10     exes = [ "bashly" ];
11   };
13 stdenvNoCC.mkDerivation (finalAttrs: {
14   name = "bashly";
16   dontUnpack = true;
18   installPhase = ''
19     runHook preInstall
21     mkdir $out;
22     cd $out;
24     mkdir bin; pushd bin;
25     ln -vs ${bashlyBundlerApp}/bin/bashly;
27     runHook postInstall
28   '';
30   meta = {
31     description = "Bash command line framework and CLI generator";
32     homepage = "https://github.com/DannyBen/bashly";
33     license = lib.licenses.mit;
34     mainProgram = "bashly";
35     maintainers = with lib.maintainers; [ drupol ];
36     platforms = lib.platforms.unix;
37   };