popcorntime: added support for i686-linux
This commit is contained in:
parent
236f8c720d
commit
f2f0d98e53
@ -4,12 +4,21 @@
|
|||||||
let
|
let
|
||||||
node-webkit = node_webkit_0_9;
|
node-webkit = node_webkit_0_9;
|
||||||
version = "0.3.7.2";
|
version = "0.3.7.2";
|
||||||
popcorntimePackage = stdenv.mkDerivation rec {
|
|
||||||
name = "popcorntime-package-${version}";
|
srcs = {
|
||||||
src = fetchurl {
|
x86_64-linux = fetchurl {
|
||||||
url = "https://get.popcorntime.io/build/Popcorn-Time-${version}-Linux64.tar.xz";
|
url = "https://get.popcorntime.io/build/Popcorn-Time-${version}-Linux64.tar.xz";
|
||||||
sha256 = "0lm9k4fr73a9p00i3xj2ywa4wvjf9csadm0pcz8d6imwwq44sa8b";
|
sha256 = "0lm9k4fr73a9p00i3xj2ywa4wvjf9csadm0pcz8d6imwwq44sa8b";
|
||||||
};
|
};
|
||||||
|
i686-linux = fetchurl {
|
||||||
|
url = "https://get.popcorntime.io/build/Popcorn-Time-${version}-Linux32.tar.xz";
|
||||||
|
sha256 = "1dz1cp31qbwamm9pf8ydmzzhnb6d9z73bigdv3y74dgicz3dpr91";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
popcorntimePackage = stdenv.mkDerivation rec {
|
||||||
|
name = "popcorntime-package-${version}";
|
||||||
|
src = srcs."${stdenv.system}";
|
||||||
sourceRoot = ".";
|
sourceRoot = ".";
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p $out
|
mkdir -p $out
|
||||||
|
Loading…
Reference in New Issue
Block a user