Merge branch 'vcsh'

+8 -8
+8 -8
pkgs/applications/version-management/vcsh/default.nix
··· 1 1 {stdenv, fetchgit}: 2 2 3 3 stdenv.mkDerivation rec { 4 - rev = "75c4c554eefbefb714fabd356933858edbce3b1e"; 5 - version = "1.20131229"; 6 - name = "vcsh-${version}_${rev}"; 4 + rev = "ef15aeeb0553efb698e3d4261e79eff77a136ee7"; 5 + version = "1.20141026"; 6 + name = "vcsh-${version}_${builtins.substring 0 7 rev}"; 7 7 8 8 src = fetchgit { 9 9 inherit rev; 10 10 url = "https://github.com/RichiH/vcsh"; 11 - sha256 = "0rc82a8vnnk9q6q88z9s10873gqgdpppbpwy2yw8a7hydqrpn0hs"; 11 + sha256 = "1dg6ina2wpy406s5x0x4r7khx6gc42hfak0gjwy0i53ivkckl1nd"; 12 12 }; 13 13 14 14 phases = [ "unpackPhase" "installPhase" "fixupPhase" ]; ··· 18 18 cp vcsh $out/bin 19 19 ''; 20 20 21 - meta = { 21 + meta = with stdenv.lib; { 22 22 description = "Version Control System for $HOME"; 23 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; 24 + license = licenses.gpl2Plus; 25 + maintainers = with maintainers; [ garbas ttuegel ]; 26 + platforms = platforms.unix; 27 27 }; 28 28 }