Commit 6e738df1 authored by Peter Hoeg's avatar Peter Hoeg
Browse files

qtox: 1.9.0 -> 1.10.0

parent f80d7897
Loading
Loading
Loading
Loading
+4 −5
Original line number Diff line number Diff line
@@ -6,13 +6,13 @@

stdenv.mkDerivation rec {
  name = "qtox-${version}";
  version = "1.9.0";
  version = "1.10.0";

  src = fetchFromGitHub {
    owner  = "tux3";
    repo   = "qTox";
    rev    = "v${version}";
    sha256 = "0l008mzrs1wsv5cbzxjkv3k48lghlcdsp8blqrkihjv5gcn3psml";
    sha256 = "00pbb788147qxpzj3kfp6x6a9w2h8rmz0sdwfzzdjh1qyb43d4q0";
  };

  buildInputs = [
@@ -34,8 +34,7 @@ stdenv.mkDerivation rec {
  installPhase = ''
    runHook preInstall

    mkdir -p $out/bin
    cp qtox $out/bin
    install -Dm755 qtox $out/bin/qtox
    wrapQtProgram $out/bin/qtox

    runHook postInstall
@@ -46,7 +45,7 @@ stdenv.mkDerivation rec {
  meta = with stdenv.lib; {
    description = "Qt Tox client";
    license = licenses.gpl3;
    maintainers = with maintainers; [ viric jgeerds akaWolf ];
    maintainers = with maintainers; [ viric jgeerds akaWolf peterhoeg ];
    platforms = platforms.all;
  };
}