updates: mr, vcsh and transmission-remote-gtk
- mr: copy some more stuff to output - add vcsh package - transmission-remote-gtk: 1.0.1 -> 1.1.1
This commit is contained in:
committed by
Rok Garbas
parent
506a030b91
commit
f5de6b8fc8
@@ -0,0 +1,28 @@
|
||||
{stdenv, fetchgit}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
rev = "75c4c554eefbefb714fabd356933858edbce3b1e";
|
||||
version = "1.20131229";
|
||||
name = "vcsh-${version}_${rev}";
|
||||
|
||||
src = fetchgit {
|
||||
inherit rev;
|
||||
url = "https://github.com/RichiH/vcsh";
|
||||
sha256 = "0rc82a8vnnk9q6q88z9s10873gqgdpppbpwy2yw8a7hydqrpn0hs";
|
||||
};
|
||||
|
||||
phases = [ "unpackPhase" "installPhase" "fixupPhase" ];
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp vcsh $out/bin
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Version Control System for $HOME";
|
||||
homepage = https://github.com/RichiH/vcsh;
|
||||
license = stdenv.lib.licenses.gpl2Plus;
|
||||
maintainers = [ stdenv.lib.maintainers.garbas ];
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user