17ceba2174
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/subgit/versions
27 lines
837 B
Nix
27 lines
837 B
Nix
{ stdenv, fetchurl, unzip, makeWrapper, jre }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "subgit-3.3.8";
|
|
|
|
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.";
|
|
homepage = http://subgit.com;
|
|
license = stdenv.lib.licenses.unfree;
|
|
platforms = stdenv.lib.platforms.all;
|
|
};
|
|
|
|
nativeBuildInputs = [ unzip makeWrapper ];
|
|
|
|
installPhase = ''
|
|
mkdir $out;
|
|
cp -r bin lib $out;
|
|
wrapProgram $out/bin/subgit --set JAVA_HOME ${jre};
|
|
'';
|
|
|
|
src = fetchurl {
|
|
url = "http://subgit.com/download/${name}.zip";
|
|
sha256 = "0gvyyr4prx1v06f9j9fmmr8br1gjd45bnncl40c9agiqsyy0q06n";
|
|
};
|
|
}
|