mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
Add gitflow
A collection of Git extensions to provide high-level repository operations for Vincent Driessen's branching model
This commit is contained in:
parent
8150f1a362
commit
11fd5db060
@ -90,4 +90,6 @@ rec {
|
||||
svn2git_kde = callPackage ./svn2git-kde { };
|
||||
|
||||
darcsToGit = callPackage ./darcs-to-git { };
|
||||
|
||||
gitflow = callPackage ./gitflow { };
|
||||
}
|
||||
|
@ -0,0 +1,23 @@
|
||||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "gitflow-${version}";
|
||||
version = "1.6.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/petervanderdoes/gitflow/archive/${version}.tar.gz";
|
||||
sha256 = "1f4879ahi8diddn7qvhr0dkj96gh527xnfihbf1ha83fn9cvvcls";
|
||||
};
|
||||
|
||||
preBuild = ''
|
||||
makeFlagsArray+=(prefix="$out")
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/petervanderdoes/gitflow;
|
||||
description = "A collection of Git extensions to provide high-level repository operations for Vincent Driessen's branching model";
|
||||
license = licenses.bsd2;
|
||||
platforms = platforms.all;
|
||||
maintainers = [ maintainers.offline ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user