vala-lint: Switch to tagged release

0.1.0 points exectly to commit a1d1a7b so no change to src hash.
This commit is contained in:
R. Ryantm 2026-02-27 18:53:38 +00:00 committed by Bobby Rong
parent 636f6c715f
commit 3ceae5bb77
No known key found for this signature in database

View file

@ -10,19 +10,19 @@
pkg-config,
vala,
gettext,
wrapGAppsHook3,
unstableGitUpdater,
wrapGAppsNoGuiHook,
nix-update-script,
}:
stdenv.mkDerivation {
stdenv.mkDerivation (finalAttrs: {
pname = "vala-lint";
version = "0-unstable-2025-08-03";
version = "0.1.0";
src = fetchFromGitHub {
owner = "vala-lang";
repo = "vala-lint";
rev = "a1d1a7bc0f740920e592fd788a836c402fd9825c";
sha256 = "sha256-63T+wLdnGtVBxKkkkj7gJx0ebApam922Z+cmk2R7Ys0=";
rev = finalAttrs.version;
hash = "sha256-63T+wLdnGtVBxKkkkj7gJx0ebApam922Z+cmk2R7Ys0=";
};
nativeBuildInputs = [
@ -31,7 +31,7 @@ stdenv.mkDerivation {
ninja
pkg-config
vala
wrapGAppsHook3
wrapGAppsNoGuiHook
];
buildInputs = [
@ -42,9 +42,7 @@ stdenv.mkDerivation {
doCheck = true;
passthru = {
updateScript = unstableGitUpdater {
url = "https://github.com/vala-lang/vala-lint.git";
};
updateScript = nix-update-script { };
};
meta = {
@ -59,4 +57,4 @@ stdenv.mkDerivation {
teams = [ lib.teams.pantheon ];
mainProgram = "io.elementary.vala-lint";
};
}
})