nurl/README.md

100 lines
4.9 KiB
Markdown
Raw Permalink Normal View History

2022-12-29 21:01:00 +03:00
# nurl
[![release](https://img.shields.io/github/v/release/nix-community/nurl?logo=github&style=flat-square)](https://github.com/nix-community/nurl/releases)
[![version](https://img.shields.io/crates/v/nurl?logo=rust&style=flat-square)][crate]
[![deps](https://deps.rs/repo/github/nix-community/nurl/status.svg?style=flat-square&compact=true)](https://deps.rs/repo/github/nix-community/nurl)
[![license](https://img.shields.io/badge/license-MPL--2.0-blue?style=flat-square)](https://www.mozilla.org/en-US/MPL/2.0)
[![ci](https://img.shields.io/github/actions/workflow/status/nix-community/nurl/ci.yml?label=ci&logo=github-actions&style=flat-square)](https://github.com/nix-community/nurl/actions?query=workflow:ci)
2022-12-30 05:04:19 +03:00
Generate Nix fetcher calls from repository URLs
2023-01-01 04:04:34 +03:00
```console
$ nurl https://github.com/nix-community/patsh v0.2.0 2>/dev/null
fetchFromGitHub {
owner = "nix-community";
repo = "patsh";
rev = "v0.2.0";
hash = "sha256-7HXJspebluQeejKYmVA7sy/F3dtU1gc4eAbKiPexMMA=";
}
2022-12-29 21:01:00 +03:00
```
2023-05-22 23:19:06 +03:00
> If you want to generate Nix packages, feel free check out [nix-init](https://github.com/nix-community/nix-init), which builds on top of nurl
2023-01-01 04:04:34 +03:00
## Supported Fetchers
2022-12-29 21:01:00 +03:00
2023-01-24 20:36:41 +03:00
- builtins.fetchGit
2023-01-13 18:38:24 +03:00
- fetchCrate
2023-01-01 04:20:02 +03:00
- fetchFromBitbucket
2023-01-01 04:04:34 +03:00
- fetchFromGitHub
- fetchFromGitLab
- fetchFromGitea
- fetchFromGitiles
- fetchFromRepoOrCz
- fetchFromSourcehut
2023-01-13 18:38:24 +03:00
- fetchHex
2023-01-24 20:36:41 +03:00
- fetchPypi
2023-01-01 04:04:34 +03:00
- fetchgit
2023-01-05 02:15:44 +03:00
- fetchhg
- fetchsvn
2022-12-29 21:01:00 +03:00
## Usage
2022-12-30 05:04:19 +03:00
```
2023-01-01 04:04:34 +03:00
Usage: nurl [OPTIONS] [URL] [REV]
2022-12-30 05:04:19 +03:00
Arguments:
2023-01-01 04:04:34 +03:00
[URL] URL to the repository to be fetched
2023-01-13 18:38:24 +03:00
[REV] The revision or reference to be fetched
2022-12-30 05:04:19 +03:00
Options:
2023-02-04 00:41:59 +03:00
-S, --submodules[=<SUBMODULES>] Fetch submodules instead of using the fetcher's default [possible
values: true, false]
2023-01-13 18:38:24 +03:00
-f, --fetcher <FETCHER> Specify the fetcher function instead of inferring from the
2023-01-24 20:36:41 +03:00
URL [possible values: builtins.fetchGit, fetchCrate,
fetchFromBitbucket, fetchFromGitHub, fetchFromGitLab,
fetchFromGitea, fetchFromGitiles, fetchFromRepoOrCz,
fetchFromSourcehut, fetchHex, fetchPypi, fetchgit, fetchhg,
fetchsvn]
-F, --fallback <FALLBACK> The fetcher to fall back to when nurl fails to infer it from
the URL [default: fetchgit] [possible values:
builtins.fetchGit, fetchCrate, fetchFromBitbucket,
2023-01-13 18:38:24 +03:00
fetchFromGitHub, fetchFromGitLab, fetchFromGitea,
fetchFromGitiles, fetchFromRepoOrCz, fetchFromSourcehut,
2023-01-24 20:36:41 +03:00
fetchHex, fetchPypi, fetchgit, fetchhg, fetchsvn]
2023-02-04 00:41:59 +03:00
-n, --nixpkgs <NIXPKGS> Path to nixpkgs (in nix) [default: <nixpkgs>]
2023-01-13 18:38:24 +03:00
-i, --indent <INDENT> Extra indentation (in number of spaces) [default: 0]
-H, --hash Only output the hash
-j, --json Output in json format
-p, --parse Parse the url without fetching the hash, output in json
format
-a, --arg <NAME> <EXPR> Additional arguments to pass to the fetcher
-A, --arg-str <NAME> <STRING> Same as --arg, but accepts strings instead Nix expressions
-o, --overwrite <NAME> <EXPR> Overwrite arguments in the final output, not taken into
2023-01-02 04:24:52 +03:00
consideration when fetching the hash
2023-01-13 18:38:24 +03:00
-O, --overwrite-str <NAME> <STRING> Same as --overwrite, but accepts strings instead Nix
2023-01-02 04:24:52 +03:00
expressions
2023-04-15 23:41:21 +03:00
-e, --expr <EXPR> Instead of fetching a URL, get the hash of a fixed-output
derivation, implies --hash and ignores all other options
2023-01-02 04:24:52 +03:00
-l, --list-fetchers List all available fetchers
-L, --list-possible-fetchers List all fetchers that can be generated without --fetcher
2023-01-03 22:38:38 +03:00
-s, --list-sep <SEPARATOR> Print out the listed fetchers with the specified separator,
only used when --list-fetchers or --list-possible-fetchers is
specified
2023-01-24 20:36:41 +03:00
-h, --help Print help
-V, --version Print version
2022-12-30 05:04:19 +03:00
```
2023-01-01 06:30:54 +03:00
## Comparison to [nix-prefetch](https://github.com/msteen/nix-prefetch)
- `nurl` infers the fetcher from the URL. For `nix-prefetch`, you need to pick the fetcher and supply the arguments manually.
2023-01-01 06:34:56 +03:00
- `nix-prefetch` relies on FOD which is slow, `nurl` tries to use alternatives when possible.
2023-04-15 23:41:21 +03:00
- `nix-prefetch` is more configurable and supports file attributes.
- `nix-prefetch` has an interface similar to `nix-build`.
- `nurl` has some nice features dedicated to generated packages (`--indent`, `--list-possible-fetchers`).
2023-01-01 06:30:54 +03:00
2022-12-29 21:01:00 +03:00
## Changelog
2023-01-01 04:04:34 +03:00
See [CHANGELOG.md](CHANGELOG.md)
2022-12-29 21:01:00 +03:00
[crate]: https://crates.io/crates/nurl