2016-01-27 16:15:42 +00:00
|
|
|
{ stdenv, fetchFromGitHub }:
|
2013-10-30 09:28:05 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-01-27 16:15:42 +00:00
|
|
|
pname = "gitflow";
|
2016-10-29 14:58:54 +01:00
|
|
|
version = "1.10.2";
|
2016-01-27 16:15:42 +00:00
|
|
|
name = "${pname}-${version}";
|
2013-10-30 09:28:05 +00:00
|
|
|
|
2016-01-27 16:15:42 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "petervanderdoes";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2016-10-29 14:58:54 +01:00
|
|
|
sha256 = "1i8bwi83qcqvi8zrkjn4mp2v8v7y11fd520wpg2jgy5hqyz34chg";
|
2013-10-30 09:28:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
preBuild = ''
|
|
|
|
makeFlagsArray+=(prefix="$out")
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://github.com/petervanderdoes/gitflow;
|
2015-06-22 11:17:50 +01:00
|
|
|
description = "Extend git with the Gitflow branching model";
|
|
|
|
longDescription = ''
|
|
|
|
A set of scripts that provide high-level repository operations
|
|
|
|
for managing feature/release/hotfix branches in a Git repository,
|
|
|
|
particularly suited to be utilised to follow Vincent Driessen's
|
|
|
|
branching model.
|
|
|
|
'';
|
2013-10-30 09:28:05 +00:00
|
|
|
license = licenses.bsd2;
|
|
|
|
platforms = platforms.all;
|
2015-06-22 07:25:07 +01:00
|
|
|
maintainers = with maintainers; [ offline jgeerds ];
|
2013-10-30 09:28:05 +00:00
|
|
|
};
|
|
|
|
}
|