mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
popcorntime: init at 0.4.9
Co-authored-by: VolodiaPG
This commit is contained in:
parent
8e848152c3
commit
490f918fe6
80
pkgs/applications/video/popcorntime/default.nix
Normal file
80
pkgs/applications/video/popcorntime/default.nix
Normal file
@ -0,0 +1,80 @@
|
|||||||
|
{ autoPatchelfHook
|
||||||
|
, fetchurl
|
||||||
|
, gcc-unwrapped
|
||||||
|
, gsettings-desktop-schemas
|
||||||
|
, gtk3
|
||||||
|
, lib
|
||||||
|
, makeDesktopItem
|
||||||
|
, makeWrapper
|
||||||
|
, nwjs
|
||||||
|
, stdenv
|
||||||
|
, unzip
|
||||||
|
, udev
|
||||||
|
, wrapGAppsHook
|
||||||
|
, copyDesktopItems
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "popcorntime";
|
||||||
|
version = "0.4.9";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/popcorn-official/popcorn-desktop/releases/download/v${version}/Popcorn-Time-${version}-linux64.zip";
|
||||||
|
sha256 = "sha256-cbKL5bgweZD/yfi/8KS0L7Raha8PTHqIm4qSPFidjUc=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
autoPatchelfHook
|
||||||
|
makeWrapper
|
||||||
|
unzip
|
||||||
|
wrapGAppsHook
|
||||||
|
copyDesktopItems
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
gcc-unwrapped
|
||||||
|
gsettings-desktop-schemas
|
||||||
|
gtk3
|
||||||
|
nwjs
|
||||||
|
udev
|
||||||
|
];
|
||||||
|
|
||||||
|
sourceRoot = ".";
|
||||||
|
|
||||||
|
dontWrapGApps = true;
|
||||||
|
dontUnpack = true;
|
||||||
|
|
||||||
|
makeWrapperArgs = [
|
||||||
|
"--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ gcc-unwrapped.lib gtk3 udev ]}"
|
||||||
|
"--prefix PATH : ${lib.makeBinPath [ stdenv.cc ]}"
|
||||||
|
];
|
||||||
|
|
||||||
|
# Extract and copy executable in $out/bin
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/share/applications $out/bin $out/opt/bin $out/share/icons/hicolor/scalable/apps/
|
||||||
|
# we can't unzip it in $out/lib, because nw.js will start with
|
||||||
|
# an empty screen. Therefore it will be unzipped in a non-typical
|
||||||
|
# folder and symlinked.
|
||||||
|
unzip -q $src -d $out/opt/popcorntime
|
||||||
|
|
||||||
|
ln -s $out/opt/popcorntime/Popcorn-Time $out/bin/popcorntime
|
||||||
|
|
||||||
|
ln -s $out/opt/popcorntime/src/app/images/icon.png $out/share/icons/hicolor/scalable/apps/popcorntime.png
|
||||||
|
'';
|
||||||
|
|
||||||
|
# GSETTINGS_SCHEMAS_PATH is not set in installPhase
|
||||||
|
preFixup = ''
|
||||||
|
wrapProgram $out/bin/popcorntime \
|
||||||
|
''${makeWrapperArgs[@]} \
|
||||||
|
''${gappsWrapperArgs[@]}
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://github.com/popcorn-official/popcorn-desktop";
|
||||||
|
description = "An application that streams movies and TV shows from torrents";
|
||||||
|
platforms = [ "x86_64-linux" ];
|
||||||
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
||||||
|
license = lib.licenses.gpl3;
|
||||||
|
maintainers = with maintainers; [ onny ];
|
||||||
|
};
|
||||||
|
}
|
@ -30632,6 +30632,8 @@ with pkgs;
|
|||||||
|
|
||||||
ponymix = callPackage ../applications/audio/ponymix { };
|
ponymix = callPackage ../applications/audio/ponymix { };
|
||||||
|
|
||||||
|
popcorntime = callPackage ../applications/video/popcorntime {};
|
||||||
|
|
||||||
pothos = libsForQt5.callPackage ../applications/radio/pothos { };
|
pothos = libsForQt5.callPackage ../applications/radio/pothos { };
|
||||||
|
|
||||||
potrace = callPackage ../applications/graphics/potrace {};
|
potrace = callPackage ../applications/graphics/potrace {};
|
||||||
|
Loading…
Reference in New Issue
Block a user