Make svn2git visible to nix-env

This commit is contained in:
Eelco Dolstra 2015-08-05 12:03:01 +02:00
parent 9657be0b95
commit 525c901ce9
2 changed files with 4 additions and 5 deletions

View File

@ -32,7 +32,7 @@ stdenv.mkDerivation {
meta = { meta = {
homepage = https://github.com/nirvdrum/svn2git; homepage = https://github.com/nirvdrum/svn2git;
description = "Ruby tool for importing existing svn projects into git"; description = "Tool for importing Subversion repositories into git";
license = stdenv.lib.licenses.mit; license = stdenv.lib.licenses.mit;
maintainers = [ stdenv.lib.maintainers.the-kenny ]; maintainers = [ stdenv.lib.maintainers.the-kenny ];

View File

@ -11490,14 +11490,13 @@ let
gitAndTools = recurseIntoAttrs (import ../applications/version-management/git-and-tools { gitAndTools = recurseIntoAttrs (import ../applications/version-management/git-and-tools {
inherit pkgs; inherit pkgs;
}); });
git = gitAndTools.git;
gitFull = gitAndTools.gitFull; inherit (gitAndTools) git gitFull gitSVN git-cola svn2git;
gitMinimal = git.override { gitMinimal = git.override {
withManual = false; withManual = false;
pythonSupport = false; pythonSupport = false;
}; };
gitSVN = gitAndTools.gitSVN;
git-cola = gitAndTools.git-cola;
gitRepo = callPackage ../applications/version-management/git-repo { gitRepo = callPackage ../applications/version-management/git-repo {
python = python27; python = python27;