Merge pull request #306911 from jopejoe1/abuild/update/3.13.0

abuild: 3.12.0 -> 3.13.0, add update script
This commit is contained in:
Jonas Heinrich 2024-04-28 13:07:17 +02:00 committed by GitHub
commit 56723b4712
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,6 +1,7 @@
{ lib
, stdenv
, fetchFromGitLab
, gitUpdater
, makeWrapper
, pkg-config
, file
@ -14,14 +15,14 @@
stdenv.mkDerivation rec {
pname = "abuild";
version = "3.12.0";
version = "3.13.0";
src = fetchFromGitLab {
domain = "gitlab.alpinelinux.org";
owner = "alpine";
repo = pname;
rev = version;
sha256 = "sha256-p4TohsZZTi4HxtJsyuoE5HDfkGa0pv53saGj3X9bmrI=";
sha256 = "sha256-xVxgcBchGfeVo1cgP9iVsWjZ6SHVN6R8zWaE1k3DcXQ=";
};
buildInputs = [
@ -77,6 +78,8 @@ stdenv.mkDerivation rec {
done
'';
passthru.updateScript = gitUpdater { };
meta = with lib; {
description = "Alpine Linux build tools";
homepage = "https://gitlab.alpinelinux.org/alpine/abuild";