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:
Jan Malakhovski 2014-02-06 00:53:55 +00:00 committed by Rok Garbas
parent 506a030b91
commit f5de6b8fc8
4 changed files with 37 additions and 7 deletions

View File

@ -1,15 +1,15 @@
{ stdenv, fetchurl, pkgconfig, intltool, gtk, json_glib, curl }:
{ stdenv, fetchurl, pkgconfig, intltool, gtk3, json_glib, curl }:
stdenv.mkDerivation rec {
name = "transmission-remote-gtk-1.0.1";
name = "transmission-remote-gtk-1.1.1";
src = fetchurl {
url = "http://transmission-remote-gtk.googlecode.com/files/${name}.tar.gz";
sha256 = "b1ae032dd52b2d7975656913e4fe39e7f74d29ef8138292d8b82318ff9afed6f";
sha256 = "1jbh2pm4i740cmzqd2r7zxnqqipvv2v2ndmnmk53nqrxcbgc4nlz";
};
buildInputs = [ pkgconfig intltool gtk json_glib curl ];
buildInputs = [ pkgconfig intltool gtk3 json_glib curl ];
meta = {
description = "GTK remote control for the Transmission BitTorrent client";

View File

@ -17,13 +17,14 @@ stdenv.mkDerivation rec {
'';
installPhase = ''
mkdir -pv $out/bin $out/share/man/man1
mkdir -pv $out/bin $out/share/man/man1 $out/share/mr
cp -v mr $out/bin
cp -v webcheckout $out/bin
cp -v mr.1 $out/share/man/man1
cp -v webcheckout.1 $out/share/man/man1
cp -v lib/* $out/share/mr
'';
meta = {
description = "Multiple Repository management tool";
longDescription = ''The mr(1) command can checkout, update, or perform other actions on a
@ -53,4 +54,3 @@ stdenv.mkDerivation rec {
maintainers = [ stdenv.lib.maintainers.antono ];
};
}

View File

@ -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;
};
}

View File

@ -2018,6 +2018,8 @@ let
vboot_reference = callPackage ../tools/system/vboot_reference { };
vcsh = callPackage ../applications/version-management/vcsh { };
verilog = callPackage ../applications/science/electronics/verilog {};
vfdecrypt = callPackage ../tools/misc/vfdecrypt { };