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