initial commit

This commit is contained in:
2026-02-06 13:52:54 +01:00
commit e74b485510
10 changed files with 851 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
{
lib,
stdenv,
}:
stdenv.mkDerivation {
pname = "example-b";
version = "0.1.0";
src = ./.;
dontUnpack = true;
installPhase = ''
mkdir -p $out/bin
cat > $out/bin/example-b << 'EOF'
#!/bin/sh
echo "Hello from example-b!"
EOF
chmod +x $out/bin/example-b
'';
meta = {
description = "Example package B";
license = lib.licenses.mit;
platforms = lib.platforms.all;
};
}