dbmate: init at 1.4.1
This commit is contained in:
25
pkgs/development/tools/database/dbmate/default.nix
Normal file
25
pkgs/development/tools/database/dbmate/default.nix
Normal file
@@ -0,0 +1,25 @@
|
||||
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
|
||||
|
||||
buildGoPackage rec {
|
||||
name = "dbmate-${version}";
|
||||
version = "1.4.1";
|
||||
|
||||
goPackagePath = "github.com/amacneil/dbmate";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "amacneil";
|
||||
repo = "dbmate";
|
||||
rev = "v${version}";
|
||||
sha256 = "0s3l51kmpsaikixq1yxryrgglzk4kfrjagcpf1i2bkq4wc5gyv5d";
|
||||
};
|
||||
|
||||
goDeps = ./deps.nix;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Database migration tool";
|
||||
homepage = https://dbmate.readthedocs.io;
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.manveru ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user