summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/video/popcorntime
diff options
context:
space:
mode:
authorBob van der Linden <bobvanderlinden@gmail.com>2016-05-02 10:46:37 +0200
committerFranz Pletz <fpletz@fnordicwalking.de>2016-05-02 10:46:37 +0200
commit69d5f27a138ce571df3088ce00dd4a2abee2b3da (patch)
tree94a97ea1f349a651939e1374dc211119fa37bb85 /pkgs/applications/video/popcorntime
parentae59e8c6445aa816ddf99ee629078bde91354ddc (diff)
popcorntime: 0.3.8 -> 0.4.0-2 (#15154)
Diffstat (limited to 'pkgs/applications/video/popcorntime')
-rw-r--r--pkgs/applications/video/popcorntime/default.nix17
1 files changed, 9 insertions, 8 deletions
diff --git a/pkgs/applications/video/popcorntime/default.nix b/pkgs/applications/video/popcorntime/default.nix
index f2bc3e701618..63c5f0460f28 100644
--- a/pkgs/applications/video/popcorntime/default.nix
+++ b/pkgs/applications/video/popcorntime/default.nix
@@ -1,24 +1,25 @@
{ lib, stdenv, fetchurl, makeWrapper, nwjs, zip }:
let
- arch = if stdenv.system == "x86_64-linux" then "64"
- else if stdenv.system == "i686-linux" then "32"
+ arch = if stdenv.system == "x86_64-linux" then "l64"
+ else if stdenv.system == "i686-linux" then "l32"
else throw "Unsupported system ${stdenv.system}";
in stdenv.mkDerivation rec {
name = "popcorntime-${version}";
- version = "0.3.9";
+ version = "0.4.0";
+ build = "2";
src = fetchurl {
- url = "http://get.popcorntime.sh/build/Popcorn-Time-${version}-Linux-${arch}.tar.xz";
+ url = "http://popcorntime.ag/download.php?file=popcorn-time-community-v${version}-${build}-${arch}.tar.xz";
sha256 =
- if arch == "64"
- then "0qaqdz45frgiy440jyz6hikhklx2yp08qp94z82r03dkbf4a2hvx"
- else "0y08a42pm681s97lkczdq5dblxl2jbr850hnl85hknl3ynag9kq4";
+ if arch == "l64"
+ then "0a68d0a81d8e97c94afa0c75209056ee4b8486f400854c952bd3ad7251bd80c9"
+ else "b311c312a29d408a7c661a271d1f3a8fc83865d8a204cf026ee87e9ac173874d";
};
dontPatchELF = true;
- sourceRoot = "linux${arch}";
+ sourceRoot = ".";
buildInputs = [ zip makeWrapper ];
buildPhase = ''