about summary refs log tree commit diff
path: root/pkgs/by-name/ba/bashly/package.nix
blob: 5a3d6661caa2d9f6bdb6bf614b8097d476010123 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{ lib
, stdenvNoCC
, bundlerApp
}:

let
  bashlyBundlerApp = bundlerApp {
    pname = "bashly";
    gemdir = ./.;
    exes = [ "bashly" ];
  };
in
stdenvNoCC.mkDerivation (finalAttrs: {
  name = "bashly";

  dontUnpack = true;

  installPhase = ''
    runHook preInstall

    mkdir $out;
    cd $out;

    mkdir bin; pushd bin;
    ln -vs ${bashlyBundlerApp}/bin/bashly;

    runHook postInstall
  '';

  meta = {
    description = "Bash command line framework and CLI generator";
    homepage = "https://github.com/DannyBen/bashly";
    license = lib.licenses.mit;
    mainProgram = "bashly";
    maintainers = with lib.maintainers; [ drupol ];
    platforms = lib.platforms.unix;
  };
})