vscode-extensions.ms-python.python: 2018.12.1 -> 2019.6.22090
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
{ stdenv, unzip }:
|
||||
{ name, version, src, ... }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
inherit name version src;
|
||||
|
||||
buildInputs = [ unzip ];
|
||||
dontBuild = true;
|
||||
unpackPhase = "unzip $src";
|
||||
installPhase = ''
|
||||
mkdir -p "$out"
|
||||
chmod -R +w .
|
||||
find . -mindepth 1 -maxdepth 1 | xargs cp -a -t "$out"
|
||||
'';
|
||||
}
|
||||
Reference in New Issue
Block a user