mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-04 03:03:42 +00:00
dbmate: add changelog to meta
This commit is contained in:
parent
cfb3bfac89
commit
bdf0a7c7cd
@ -1,4 +1,7 @@
|
||||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "dbmate";
|
||||
@ -7,8 +10,8 @@ buildGoModule rec {
|
||||
src = fetchFromGitHub {
|
||||
owner = "amacneil";
|
||||
repo = "dbmate";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-bWmRdrULXXVIaO5f3rntsVURnyojYFbhbZ43WvGzoZk=";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-bWmRdrULXXVIaO5f3rntsVURnyojYFbhbZ43WvGzoZk=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-m1Nbu1bE04iOXnxW5kJfI9W95FU87eRKkOzg+YVvRsg=";
|
||||
@ -18,8 +21,9 @@ buildGoModule rec {
|
||||
meta = with lib; {
|
||||
description = "Database migration tool";
|
||||
homepage = "https://github.com/amacneil/dbmate";
|
||||
changelog = "https://github.com/amacneil/dbmate/releases/tag/v${version}";
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.manveru ];
|
||||
maintainers = with maintainers; [ manveru ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user