Merge branch 'master' into stdenv-updates
Conflicts: pkgs/top-level/all-packages.nix
This commit is contained in:
@@ -90,4 +90,6 @@ rec {
|
||||
svn2git_kde = callPackage ./svn2git-kde { };
|
||||
|
||||
darcsToGit = callPackage ./darcs-to-git { };
|
||||
|
||||
gitflow = callPackage ./gitflow { };
|
||||
}
|
||||
|
||||
@@ -14,8 +14,8 @@
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "git-annex";
|
||||
version = "4.20131002";
|
||||
sha256 = "00pjb0ivcggpx4qdihrarss68c1q5viwfz4jgg7rqjnhslwvk440";
|
||||
version = "4.20131024";
|
||||
sha256 = "1a4mrx8zr5znhcy2cszv5ri9avqj7lcn467nmaj172f00vn4fd5x";
|
||||
isLibrary = false;
|
||||
isExecutable = true;
|
||||
buildDepends = [
|
||||
|
||||
@@ -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 ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user