nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

dbmate: add changelog to meta

authored by

Fabian Affolter and committed by
GitHub
bdf0a7c7 cfb3bfac

+8 -4
+8 -4
pkgs/development/tools/database/dbmate/default.nix
··· 1 - { lib, buildGoModule, fetchFromGitHub }: 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 2 5 3 6 buildGoModule rec { 4 7 pname = "dbmate"; ··· 10 7 src = fetchFromGitHub { 11 8 owner = "amacneil"; 12 9 repo = "dbmate"; 13 - rev = "v${version}"; 14 - sha256 = "sha256-bWmRdrULXXVIaO5f3rntsVURnyojYFbhbZ43WvGzoZk="; 10 + rev = "refs/tags/v${version}"; 11 + hash = "sha256-bWmRdrULXXVIaO5f3rntsVURnyojYFbhbZ43WvGzoZk="; 15 12 }; 16 13 17 14 vendorHash = "sha256-m1Nbu1bE04iOXnxW5kJfI9W95FU87eRKkOzg+YVvRsg="; ··· 21 18 meta = with lib; { 22 19 description = "Database migration tool"; 23 20 homepage = "https://github.com/amacneil/dbmate"; 21 + changelog = "https://github.com/amacneil/dbmate/releases/tag/v${version}"; 24 22 license = licenses.mit; 25 - maintainers = [ maintainers.manveru ]; 23 + maintainers = with maintainers; [ manveru ]; 26 24 platforms = platforms.unix; 27 25 }; 28 26 }