refactor: rename shell script templates
This commit is contained in:
parent
cfcc6c68a6
commit
f245106449
7 changed files with 2 additions and 2 deletions
17
bash/script/nixpkgs/package.nix
Normal file
17
bash/script/nixpkgs/package.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{ stdenvNoCC
|
||||
, bash
|
||||
}:
|
||||
|
||||
stdenvNoCC.mkDerivation {
|
||||
pname = "hello";
|
||||
version = "0.1";
|
||||
|
||||
src = ./.;
|
||||
|
||||
buildInputs = [ bash ];
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp hello $out/bin
|
||||
'';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue