Skip to content

Commit 854695a

Browse files
committed
nix-prefetch-zip is deprecated in favor of nix-prefetch-url.
Fixes #263.
1 parent 08a0c31 commit 854695a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/Distribution/Nixpkgs/Fetch.hs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,7 @@ fetch :: forall a. (String -> MaybeT IO a) -- ^ This function is passed the
7979
fetch f = runMaybeT . fetchers where
8080
fetchers :: Source -> MaybeT IO (DerivationSource, a)
8181
fetchers source = msum . (fetchLocal source :) $ map (\fetcher -> fetchWith fetcher source >>= process)
82-
[ (False, "zip", [])
83-
, (False, "url", [])
82+
[ (False, "url", [])
8483
, (True, "git", ["--fetch-submodules"])
8584
, (True, "hg", [])
8685
, (True, "svn", [])

0 commit comments

Comments
 (0)