2021-01-15 13:21:58 +00:00
|
|
|
{ lib, stdenv, fetchurl, unzip, makeWrapper, jre }:
|
2015-12-23 23:00:22 +00:00
|
|
|
|
2017-04-01 02:37:40 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2020-07-07 17:25:08 +01:00
|
|
|
name = "subgit-3.3.10";
|
2015-12-23 23:00:22 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A tool for a smooth, stress-free SVN to Git migration";
|
|
|
|
longDescription = "Create writable Git mirror of a local or remote Subversion repository and use both Subversion and Git as long as you like. You may also do a fast one-time import from Subversion to Git.";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://subgit.com";
|
2021-01-15 13:21:58 +00:00
|
|
|
license = lib.licenses.unfree;
|
|
|
|
platforms = lib.platforms.all;
|
2015-12-23 23:00:22 +00:00
|
|
|
};
|
|
|
|
|
2017-04-01 02:37:40 +01:00
|
|
|
nativeBuildInputs = [ unzip makeWrapper ];
|
2015-12-23 23:00:22 +00:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir $out;
|
|
|
|
cp -r bin lib $out;
|
|
|
|
wrapProgram $out/bin/subgit --set JAVA_HOME ${jre};
|
|
|
|
'';
|
|
|
|
|
|
|
|
src = fetchurl {
|
2020-01-22 10:26:22 +00:00
|
|
|
url = "https://subgit.com/download/${name}.zip";
|
2020-07-07 17:25:08 +01:00
|
|
|
sha256 = "1z7cmaghfy5yjs50b3y6av9h2d6xmpamyxql7vvr3dy6kflvv8fk";
|
2015-12-23 23:00:22 +00:00
|
|
|
};
|
2017-04-01 02:37:40 +01:00
|
|
|
}
|