Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 5d4b94ec2dff
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 195a9b51bab1
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Oct 5, 2019

  1. dbmate: 1.4.1 -> 1.7.0

    manveru committed Oct 5, 2019
    Copy the full SHA
    35b405a View commit details
  2. Merge pull request #70428 from manveru/dbmate-1.7.0

    dbmate: 1.4.1 -> 1.7.0
    mmahut authored Oct 5, 2019
    Copy the full SHA
    195a9b5 View commit details
Showing with 6 additions and 8 deletions.
  1. +6 −8 pkgs/development/tools/database/dbmate/default.nix
14 changes: 6 additions & 8 deletions pkgs/development/tools/database/dbmate/default.nix
Original file line number Diff line number Diff line change
@@ -1,23 +1,21 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:
{ stdenv, buildGoModule, fetchFromGitHub }:

buildGoPackage rec {
buildGoModule rec {
pname = "dbmate";
version = "1.4.1";

goPackagePath = "github.com/amacneil/dbmate";
version = "1.7.0";

src = fetchFromGitHub {
owner = "amacneil";
repo = "dbmate";
rev = "v${version}";
sha256 = "0s3l51kmpsaikixq1yxryrgglzk4kfrjagcpf1i2bkq4wc5gyv5d";
sha256 = "0jvizj616rsh3aw9z3bijk7ixpbnqmm3xqmdxznjzqd46avr54c3";
};

goDeps = ./deps.nix;
modSha256 = "12x3m5bjyx3blh5i51pd99phv73m96pmm6i3ir4vf2kms3viif9i";

meta = with stdenv.lib; {
description = "Database migration tool";
homepage = https://dbmate.readthedocs.io;
homepage = https://github.com/amacneil/dbmate;
license = licenses.mit;
maintainers = [ maintainers.manveru ];
platforms = platforms.unix;