Skip to content

Commit

Permalink
git-town: 9.0.1 -> 13.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gabyx committed Mar 27, 2024
1 parent d581fb1 commit bab0e5d
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions pkgs/applications/version-management/git-town/default.nix
Expand Up @@ -2,21 +2,24 @@

buildGoModule rec {
pname = "git-town";
version = "9.0.1";
version = "13.0.0";

src = fetchFromGitHub {
owner = "git-town";
repo = "git-town";
rev = "v${version}";
hash = "sha256-JvN7te59uRMC0TOWsBUYNEPLIn4nLlIvXI5gOQfQaCU=";
hash = "sha256-EK8Mx+fXprWsndkqYywlyQoWBVi4HgZAryUOhucQl5g=";
};

vendorHash = null;

buildInputs = [ git ];
nativeBuildInputs = [ installShellFiles makeWrapper ];

buildInputs = [ git ];
vendorHash = null;
excludedPackages = [
"./tools"
];

GOWORK = "off";
ldflags =
let
modulePath = "github.com/git-town/git-town/v${lib.versions.major version}"; in
Expand All @@ -32,8 +35,6 @@ buildGoModule rec {
let
skippedTests = [
"TestGodog"
"TestRunner_CreateChildFeatureBranch"
"TestShellRunner_RunStringWith_Dir"
"TestMockingShell_MockCommand"
"TestShellRunner_RunStringWith_Input"
];
Expand Down Expand Up @@ -63,6 +64,6 @@ buildGoModule rec {
description = "Generic, high-level git support for git-flow workflows";
homepage = "https://www.git-town.com/";
license = licenses.mit;
maintainers = with maintainers; [ allonsy blaggacao ];
maintainers = with maintainers; [ allonsy blaggacao gabyx];
};
}

0 comments on commit bab0e5d

Please sign in to comment.