Merge branch 'master.upstream' into staging.upstream

This commit is contained in:
William A. Kennington III
2015-06-22 10:57:36 -07:00
114 changed files with 1394 additions and 412 deletions
@@ -2,11 +2,11 @@
pythonPackages.buildPythonPackage rec {
name = "git-cola-${version}";
version = "2.1.1";
version = "2.2.1";
src = fetchurl {
url = "https://github.com/git-cola/git-cola/archive/v${version}.tar.gz";
sha256 = "0fpi5nvhyqkx67ak5pfcpgxbc3m19dqlvdh2c9igv2j0vp5rzkj1";
sha256 = "1v1s9gx16xihdcck4qp92bdci8zc6pb5a3z3y8k9jqj97hfkw2nz";
};
buildInputs = [ makeWrapper gettext ];
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "gitflow-${version}";
version = "1.7.0";
version = "1.8.0";
src = fetchurl {
url = "https://github.com/petervanderdoes/gitflow/archive/${version}.tar.gz";
sha256 = "0rppgyqgk0drip6852bdm2479zks16cb3mj1jdw6jq80givrqnjx";
sha256 = "1vxdawx4sinl19g59ifmrdalmr2dl5pkgawyj9z0s5mcildi6fc2";
};
preBuild = ''
@@ -15,9 +15,15 @@ stdenv.mkDerivation rec {
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";
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.
'';
license = licenses.bsd2;
platforms = platforms.all;
maintainers = [ maintainers.offline ];
maintainers = with maintainers; [ offline jgeerds ];
};
}