1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 13:41:26 +00:00

vimPlugins.matchit-zip: remove unpack phase

This commit is contained in:
Jörg Thalheim 2018-04-08 22:27:17 +01:00
parent 77303e90a6
commit 73df91ea37
2 changed files with 2 additions and 15 deletions

View file

@ -1,5 +1,5 @@
# TODO check that no license information gets lost
{ fetchurl, stdenv, python, go, cmake, vim, vimUtils, perl, ruby, unzip
{ fetchurl, stdenv, python, go, cmake, vim, vimUtils, perl, ruby
, which, fetchgit, llvmPackages, rustPlatform
, xkb_switch, rustracerd, fzf, skim
, python3, boost, icu, ncurses
@ -3053,13 +3053,7 @@ rec {
sha256 = "1s9c4lnsmbfm97bp22jrmcp5lga5ihx23lzqqncvv7rcizkvr3dm";
};
dependencies = [];
unpackPhase = ''
(
sourceRoot=d
mkdir $sourceRoot; cd $sourceRoot;
unzip $src
)
'';
};
mayansmoke-git = buildVimPluginFrom2Nix { # created by nix#NixDerivation

View file

@ -1,7 +0,0 @@
unpackPhase = ''
(
sourceRoot=d
mkdir $sourceRoot; cd $sourceRoot;
unzip $src
)
'';