qtox: 1.9.0 -> 1.10.0

This commit is contained in:
Peter Hoeg 2017-05-09 13:21:52 +08:00
parent f80d789764
commit 6e738df176
1 changed files with 4 additions and 5 deletions

View File

@ -6,13 +6,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "qtox-${version}"; name = "qtox-${version}";
version = "1.9.0"; version = "1.10.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "tux3"; owner = "tux3";
repo = "qTox"; repo = "qTox";
rev = "v${version}"; rev = "v${version}";
sha256 = "0l008mzrs1wsv5cbzxjkv3k48lghlcdsp8blqrkihjv5gcn3psml"; sha256 = "00pbb788147qxpzj3kfp6x6a9w2h8rmz0sdwfzzdjh1qyb43d4q0";
}; };
buildInputs = [ buildInputs = [
@ -34,8 +34,7 @@ stdenv.mkDerivation rec {
installPhase = '' installPhase = ''
runHook preInstall runHook preInstall
mkdir -p $out/bin install -Dm755 qtox $out/bin/qtox
cp qtox $out/bin
wrapQtProgram $out/bin/qtox wrapQtProgram $out/bin/qtox
runHook postInstall runHook postInstall
@ -46,7 +45,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Qt Tox client"; description = "Qt Tox client";
license = licenses.gpl3; license = licenses.gpl3;
maintainers = with maintainers; [ viric jgeerds akaWolf ]; maintainers = with maintainers; [ viric jgeerds akaWolf peterhoeg ];
platforms = platforms.all; platforms = platforms.all;
}; };
} }