Commit ac04a5c4 authored by Pol Dellaiera's avatar Pol Dellaiera
Browse files

doc: replace `rev` with `tag`

parent 30eb01e1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -43,7 +43,7 @@ buildDartApplication rec {
  src = fetchFromGitHub {
    owner = "sass";
    repo = pname;
    rev = version;
    tag = version;
    hash = "sha256-U6enz8yJcc4Wf8m54eYIAnVg/jsGi247Wy8lp1r1wg4=";
  };

+1 −1
Original line number Diff line number Diff line
@@ -22,7 +22,7 @@ buildDubPackage rec {
  src = fetchFromGitHub {
    owner = "CyberShadow";
    repo = "btdu";
    rev = "v${version}";
    tag = "v${version}";
    hash = "sha256-3sSZq+5UJH02IO0Y1yL3BLHDb4lk8k6awb5ZysBQciE=";
  };

+1 −1
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@ The following is an example expression using `buildGoModule`:
    src = fetchFromGitHub {
      owner = "knqyf263";
      repo = "pet";
      rev = "v${finalAttrs.version}";
      tag = "v${finalAttrs.version}";
      hash = "sha256-Gjw1dRrgM8D3G7v6WIM2+50r4HmTXvx0Xxme2fH9TlQ=";
    };

+1 −1
Original line number Diff line number Diff line
@@ -205,7 +205,7 @@ buildNpmPackage (finalAttrs: {
  src = fetchFromGitHub {
    owner = "jesec";
    repo = pname;
    rev = "v${finalAttrs.version}";
    tag = "v${finalAttrs.version}";
    hash = "sha256-BR+ZGkBBfd0dSQqAvujsbgsEPFYw/ThrylxUbOksYxM=";
  };

+2 −3
Original line number Diff line number Diff line
@@ -135,7 +135,6 @@ During Quicklisp import:
- names starting with a number have a `_` prepended (`3d-vectors`->`_3d-vectors`)
- `_` in names is converted to `__` for reversibility


## Defining packages manually inside Nixpkgs {#lisp-defining-packages-inside}

Packages that for some reason are not in Quicklisp, and so cannot be
@@ -185,7 +184,7 @@ let
      domain = "gitlab.common-lisp.net";
      owner = "alexandria";
      repo = "alexandria";
      rev = "v${version}";
      tag = "v${version}";
      hash = "sha256-1Hzxt65dZvgOFIljjjlSGgKYkj+YBLwJCACi5DZsKmQ=";
    };
  };
@@ -212,7 +211,7 @@ sbcl.pkgs.alexandria.overrideLispAttrs (oldAttrs: rec {
    domain = "gitlab.common-lisp.net";
    owner = "alexandria";
    repo = "alexandria";
    rev = "v${version}";
    tag = "v${version}";
    hash = "sha256-1Hzxt65dZvgOFIljjjlSGgKYkj+YBLwJCACi5DZsKmQ=";
  };
})
Loading