Restructure everything

This commit is contained in:
Kiana Sheibani 2024-07-28 06:01:20 -04:00
parent 81ca8af870
commit a8a26921b4
Signed by: toki
GPG key ID: 6CB106C25E86A9F7
19 changed files with 227 additions and 67 deletions

17
bash/nixpkgs/package.nix Normal file
View file

@ -0,0 +1,17 @@
{ stdenv
, bash
}:
stdenv.mkDerivation {
pname = "soe";
version = "1.0";
src = ./.;
buildInputs = [ bash ];
installPhase = ''
mkdir -p $out/bin
cp soe $out/bin
'';
}