Add a dummy bin for the examples

This commit is contained in:
Rodrigo Arias 2020-07-03 18:26:04 +02:00
parent 91c38d70a8
commit 0f2b4754fd

View File

@ -8,10 +8,17 @@
src = null;
dontUnpack = true;
dontBuild = true;
buildPhase = ''
ls -l /
echo "${stdenv}"
installPhase = ''
mkdir -p $out/bin
cat > $out/bin/dummy <<EOF
#!/bin/sh
echo Hello world!
EOF
chmod +x $out/bin/dummy
'';
};
}