-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdefault.nix
More file actions
29 lines (23 loc) · 763 Bytes
/
default.nix
File metadata and controls
29 lines (23 loc) · 763 Bytes
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
{ pkgs ? import <nixpkgs> {} }:
pkgs.stdenv.mkDerivation {
pname = "drawercli";
version = "1.2.4";
src = ./.;
buildInputs = [ pkgs.bash ];
buildPhase = ''
mkdir -p $out/bin
'';
installPhase = ''
mkdir -p $out/share/doc/drawercli
cp -f ./LICENSE $out/share/doc/drawercli/LICENSE
cp -f ./README.md $out/share/doc/drawercli/README.md
cp -f ./drawercli.sh $out/bin/drawercli
chmod +x $out/bin/drawercli
'';
meta = with pkgs.lib; {
description = "This cli app supports using termuxlauncher as your primary launcher for Android phones, interactively and easily install. That's simply the Termuxlauncher Add-on built with fzf🚀
";
license = licenses.mit;
maintainers = with maintainers; [ luisadha ];
};
}