tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
subgit: 3.1.0 -> 3.2.4
Orivej Desh
9 years ago
ecf5daa5
a41668f4
+6
-6
1 changed file
expand all
collapse all
unified
split
pkgs
applications
version-management
git-and-tools
subgit
default.nix
+6
-6
pkgs/applications/version-management/git-and-tools/subgit/default.nix
···
1
1
{ stdenv, fetchurl, unzip, makeWrapper, jre }:
2
2
3
3
-
stdenv.mkDerivation {
4
4
-
name = "subgit-3.1.0";
3
3
+
stdenv.mkDerivation rec {
4
4
+
name = "subgit-3.2.4";
5
5
6
6
meta = {
7
7
description = "A tool for a smooth, stress-free SVN to Git migration";
···
11
11
platforms = stdenv.lib.platforms.all;
12
12
};
13
13
14
14
-
buildInputs = [ unzip makeWrapper ];
14
14
+
nativeBuildInputs = [ unzip makeWrapper ];
15
15
16
16
installPhase = ''
17
17
mkdir $out;
···
20
20
'';
21
21
22
22
src = fetchurl {
23
23
-
url = http://old.subgit.com/download/subgit-3.1.0.zip;
24
24
-
sha256 = "08qhpg6y2ziwplm0z1ghh1wfp607sw4hyb53a7qzfn759j5kcdrg";
23
23
+
url = "http://subgit.com/download/${name}.zip";
24
24
+
sha256 = "13r6hi2zk46bs3j17anfc85kszlwliv2yc16qx834b3v4w68hajw";
25
25
};
26
26
-
}
26
26
+
}