git-together: remove "v" prefix from version
The version string must start with a digit per nixpkgs versioning guideline.
This commit is contained in:
@@ -10,12 +10,12 @@
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "git-together";
|
||||
version = "v0.1.0-alpha.26";
|
||||
version = "0.1.0-alpha.26";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "kejadlen";
|
||||
repo = "git-together";
|
||||
rev = version;
|
||||
tag = "v${version}";
|
||||
hash = "sha256-2HgOaqlX0mmmvRlALHm90NAdIhby/jWUJO63bQFqc+4=";
|
||||
};
|
||||
|
||||
@@ -28,7 +28,7 @@ rustPlatform.buildRustPackage rec {
|
||||
cargoHash = "sha256-5LKKjHzIlXw0bUmF7GDCVW0cptCxohq6CNPIrMZKorM=";
|
||||
|
||||
meta = with lib; {
|
||||
changelog = "https://github.com/kejadlen/git-together/releases/tag/${src.rev}";
|
||||
changelog = "https://github.com/kejadlen/git-together/releases/tag/v${version}";
|
||||
description = "Better commit attribution while pairing without messing with your git workflow";
|
||||
homepage = "https://github.com/kejadlen/git-together";
|
||||
license = licenses.mit;
|
||||
|
||||
Reference in New Issue
Block a user