query
On this page

fetchFromBitbucket

pkgs.fetchFromBitbucket

Functor
Docs pulled from | This Revision | 21 minutes ago

No reference documentation found yet.

Contribute now!


Contribute
Enhance the ecosystem with your expertise! Contribute to fill the gaps in documentation. Your input can make a difference.

Noogle detected

This is a Functor

Learn about functors

Implementation

The following is the current implementation of this function.

{
    owner,
    repo,
    rev,
    name ? "source",
    ... # For hash agility
  }@args:
  fetchzip (
    {
      inherit name;
      url = "https://bitbucket.org/${owner}/${repo}/get/${rev}.tar.gz";
      meta.homepage = "https://bitbucket.org/${owner}/${repo}/";
    }
    // removeAttrs args [
      "owner"
      "repo"
      "rev"
    ]
  )
  // {
    inherit rev;
  }