stdenv: Kill off ensureDir

This commit is contained in:
adisbladis
2018-01-09 11:14:48 +08:00
parent 03dca870ab
commit c2316114bc
4 changed files with 4 additions and 14 deletions
+2 -2
View File
@@ -14,14 +14,14 @@ stdenv.mkDerivation rec {
buildInputs = [
python gyp
] ++ lib.optional stdenv.isLinux utillinux;
buildPhase = ''
python ./gyp_bud -f make
make -C out
'';
installPhase = ''
ensureDir $out/bin
mkdir -p $out/bin
cp out/Release/bud $out/bin
'';