Compare commits

...

No commits in common. "0bfe8604aec316671d27863ac0acb18ce5c2edfa" and "c2e0ef5886c3a197253c213de2f3e0a888edad6f" have entirely different histories.

8 changed files with 4 additions and 2 deletions

View file

@ -4,11 +4,13 @@ stdenv.mkDerivation rec {
name = "dadadaScripts";
version = "1";
#src = ./src;
buildPhase = "";
installPhase = ''
mkdir -p $out/
cp -r bin $out/
mkdir -p $out/bin
cp * $out/bin
'';
meta = with stdenv.lib; {

View file