tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
Merge branch 'vcsh'
Thomas Tuegel
11 years ago
0dcdb3c7
2335ec0b
+8
-8
1 changed file
expand all
collapse all
unified
split
pkgs
applications
version-management
vcsh
default.nix
+8
-8
pkgs/applications/version-management/vcsh/default.nix
···
1
{stdenv, fetchgit}:
2
3
stdenv.mkDerivation rec {
4
-
rev = "75c4c554eefbefb714fabd356933858edbce3b1e";
5
-
version = "1.20131229";
6
-
name = "vcsh-${version}_${rev}";
7
8
src = fetchgit {
9
inherit rev;
10
url = "https://github.com/RichiH/vcsh";
11
-
sha256 = "0rc82a8vnnk9q6q88z9s10873gqgdpppbpwy2yw8a7hydqrpn0hs";
12
};
13
14
phases = [ "unpackPhase" "installPhase" "fixupPhase" ];
···
18
cp vcsh $out/bin
19
'';
20
21
-
meta = {
22
description = "Version Control System for $HOME";
23
homepage = https://github.com/RichiH/vcsh;
24
-
license = stdenv.lib.licenses.gpl2Plus;
25
-
maintainers = [ stdenv.lib.maintainers.garbas ];
26
-
platforms = stdenv.lib.platforms.unix;
27
};
28
}
···
1
{stdenv, fetchgit}:
2
3
stdenv.mkDerivation rec {
4
+
rev = "ef15aeeb0553efb698e3d4261e79eff77a136ee7";
5
+
version = "1.20141026";
6
+
name = "vcsh-${version}_${builtins.substring 0 7 rev}";
7
8
src = fetchgit {
9
inherit rev;
10
url = "https://github.com/RichiH/vcsh";
11
+
sha256 = "1dg6ina2wpy406s5x0x4r7khx6gc42hfak0gjwy0i53ivkckl1nd";
12
};
13
14
phases = [ "unpackPhase" "installPhase" "fixupPhase" ];
···
18
cp vcsh $out/bin
19
'';
20
21
+
meta = with stdenv.lib; {
22
description = "Version Control System for $HOME";
23
homepage = https://github.com/RichiH/vcsh;
24
+
license = licenses.gpl2Plus;
25
+
maintainers = with maintainers; [ garbas ttuegel ];
26
+
platforms = platforms.unix;
27
};
28
}