Skip to content

Commit

Permalink
pkgs: remove version regex for packages without tags
Browse files Browse the repository at this point in the history
  • Loading branch information
lilyinstarlight committed Sep 7, 2024
1 parent ea970b4 commit 9b4e7e2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion pkgs/cosmic-player/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ rustPlatform.buildRustPackage {
];

passthru.updateScript = nix-update-script {
extraArgs = [ "--version-regex" "epoch-(.*)" ];
# TODO: uncomment when there are actual tagged releases
#extraArgs = [ "--version-regex" "epoch-(.*)" ];
};

meta = with lib; {
Expand Down
3 changes: 2 additions & 1 deletion pkgs/cosmic-reader/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ rustPlatform.buildRustPackage {
];

passthru.updateScript = nix-update-script {
extraArgs = [ "--version-regex" "epoch-(.*)" ];
# TODO: uncomment when there are actual tagged releases
#extraArgs = [ "--version-regex" "epoch-(.*)" ];
};

meta = with lib; {
Expand Down

0 comments on commit 9b4e7e2

Please sign in to comment.