Skip to content

Commit

Permalink
treewide: fix rev->tag eval breakages
Browse files Browse the repository at this point in the history
  • Loading branch information
pbsds committed Jan 12, 2025
1 parent 59c7a44 commit 1d06ad9
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions pkgs/applications/misc/tandoor-recipes/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ let
src = fetchFromGitHub {
owner = "python-validators";
repo = "validators";
rev = version;
tag = version;
hash = "sha256-ZnLyTHlsrXthGnaPzlV2ga/UTm5SSEHLTwC/tobiPak=";
};
propagatedBuildInputs = [ super.decorator super.six ];
Expand All @@ -35,7 +35,7 @@ let
lxml = super.lxml.overridePythonAttrs (oldAttrs: rec {
version = "5.1.0";
src = oldAttrs.src.override {
rev = version;
tag = version;
hash = "sha256-eWLYzZWatYDmhuBTZynsdytlNFKKmtWQ1XIyzVD8sDY=";
};
});
Expand Down
4 changes: 2 additions & 2 deletions pkgs/by-name/de/dep-scan/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ let
python3.pkgs.appthreat-vulnerability-db.overrideAttrs (oldAttrs: rec {
version = "5.7.8";
src = oldAttrs.src.override {
rev = "refs/tags/v${version}";
tag = "v${version}";
hash = "sha256-R00/a9+1NctVPi+EL7K65w/e88c9oSW5xXGgno+MCXo=";
};
})
Expand All @@ -24,7 +24,7 @@ python3.pkgs.buildPythonApplication rec {
src = fetchFromGitHub {
owner = "owasp-dep-scan";
repo = "dep-scan";
rev = "refs/tags/v${version}";
tag = "v${version}";
hash = "sha256-QTvxKoqBxTb/xFaIHsYe3N+7ABJ6sDd2vVcjkMbm3xI=";
};

Expand Down
4 changes: 2 additions & 2 deletions pkgs/by-name/op/openllm/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ let
version = "23.1.2";
build-system = [ super.poetry-core ];
src = oldAttrs.src.override {
rev = "refs/tags/v${version}";
tag = "v${version}";
hash = "sha256-YO4Clbo5fmXbysxwwM2qCHJwO5KwDC05VctRVFruJcw=";
};
});
Expand All @@ -27,7 +27,7 @@ python.pkgs.buildPythonApplication rec {
src = fetchFromGitHub {
owner = "bentoml";
repo = "openllm";
rev = "refs/tags/v${version}";
tag = "v${version}";
hash = "sha256-4KIpe6KjbBDDUj0IjzSccxjgZyBoaUVIQJYk1+W01Vo=";
};

Expand Down
6 changes: 3 additions & 3 deletions pkgs/by-name/pa/paperless-ngx/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ let
src = fetchFromGitHub {
owner = "paperless-ngx";
repo = "paperless-ngx";
rev = "refs/tags/v${version}";
tag = "v${version}";
hash = "sha256-AVfm5tC2+hTdEv0ildEj0El1M/sF7ftkEn3pUkG1O7Q=";
};

Expand All @@ -52,7 +52,7 @@ let
{
inherit version;
src = src.override {
rev = "refs/tags/${version}";
tag = version;
hash = "sha256-GvYdExkNuySrg8ERnWOJxucFe5HVdPAcHfRNeqiVS7M=";
};

Expand All @@ -74,7 +74,7 @@ let
src = fetchFromGitHub {
owner = "encode";
repo = "uvicorn";
rev = "0.25.0";
tag = "0.25.0";
hash = "sha256-ng98DTw49zyFjrPnEwfnPfONyjKKZYuLl0qduxSppYk=";
};
});
Expand Down
2 changes: 1 addition & 1 deletion pkgs/by-name/pr/pretalx/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ let
django-bootstrap4 = prev.django-bootstrap4.overridePythonAttrs (oldAttrs: rec {
version = "3.0.0";
src = oldAttrs.src.override {
rev = "v${version}";
tag = "v${version}";
hash = "sha256-a8BopUwZjmvxOzBVqs4fTo0SY8sEEloGUw90daYWfz8=";
};

Expand Down
2 changes: 1 addition & 1 deletion pkgs/tools/misc/diffoscope/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ let
{
inherit version;
src = src.override {
rev = version;
tag = version;
hash = "sha256-ZYEjT/yShfA4+zpbGOtaFOx1nSSOWPtMvskPhHv3c9U=";
};
}
Expand Down

0 comments on commit 1d06ad9

Please sign in to comment.