nixpkgs/pkgs/development/tools/database/dbmate/default.nix

24 lines
585 B
Nix
Raw Normal View History

{ stdenv, buildGoModule, fetchFromGitHub }:
2018-09-29 04:31:26 -07:00
2019-10-04 17:26:52 -07:00
buildGoModule rec {
pname = "dbmate";
2019-10-04 17:26:52 -07:00
version = "1.7.0";
2018-09-29 04:31:26 -07:00
src = fetchFromGitHub {
owner = "amacneil";
repo = "dbmate";
rev = "v${version}";
2019-10-04 17:26:52 -07:00
sha256 = "0jvizj616rsh3aw9z3bijk7ixpbnqmm3xqmdxznjzqd46avr54c3";
2018-09-29 04:31:26 -07:00
};
2019-10-04 17:26:52 -07:00
modSha256 = "12x3m5bjyx3blh5i51pd99phv73m96pmm6i3ir4vf2kms3viif9i";
2018-09-29 04:31:26 -07:00
meta = with stdenv.lib; {
description = "Database migration tool";
homepage = "https://github.com/amacneil/dbmate";
2018-09-29 04:31:26 -07:00
license = licenses.mit;
maintainers = [ maintainers.manveru ];
platforms = platforms.unix;
};
}