antares: modernize derivation

This commit is contained in:
NotAShelf 2024-10-23 06:40:32 +03:00
parent d75577c34f
commit a89407bf01
No known key found for this signature in database
GPG Key ID: AF26552424E53993

View File

@ -15,7 +15,7 @@ buildNpmPackage rec {
src = fetchFromGitHub {
owner = "antares-sql";
repo = "antares";
rev = "v${version}";
rev = "refs/tags/v${version}";
hash = "sha256-3zgr3Eefx3WDUW9/1NOaneUbFy3GTnJ3tGgivtW1K/g=";
};
@ -66,10 +66,11 @@ buildNpmPackage rec {
})
];
meta = with lib; {
meta = {
description = "Modern, fast and productivity driven SQL client with a focus in UX";
homepage = "https://github.com/antares-sql/antares";
license = licenses.mit;
maintainers = with maintainers; [ eymeric ];
changelog = "https://github.com/antares-sql/antares/blob/v${version}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ eymeric ];
};
}