We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08a0c31 commit 854695aCopy full SHA for 854695a
src/Distribution/Nixpkgs/Fetch.hs
@@ -79,8 +79,7 @@ fetch :: forall a. (String -> MaybeT IO a) -- ^ This function is passed the
79
fetch f = runMaybeT . fetchers where
80
fetchers :: Source -> MaybeT IO (DerivationSource, a)
81
fetchers source = msum . (fetchLocal source :) $ map (\fetcher -> fetchWith fetcher source >>= process)
82
- [ (False, "zip", [])
83
- , (False, "url", [])
+ [ (False, "url", [])
84
, (True, "git", ["--fetch-submodules"])
85
, (True, "hg", [])
86
, (True, "svn", [])
0 commit comments