mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
hypnotix: init at 2.6
This commit is contained in:
parent
130bff590e
commit
a452e0e264
86
pkgs/applications/video/hypnotix/default.nix
Normal file
86
pkgs/applications/video/hypnotix/default.nix
Normal file
@ -0,0 +1,86 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, substituteAll
|
||||
, cinnamon
|
||||
, gettext
|
||||
, gobject-introspection
|
||||
, mpv
|
||||
, python3
|
||||
, wrapGAppsHook
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "hypnotix";
|
||||
version = "2.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "linuxmint";
|
||||
repo = "hypnotix";
|
||||
rev = version;
|
||||
hash = "sha256-9HWr8zjUuhj/GZdrt1WwpwYNLEl34S9IJ7ikGZBSw3s=";
|
||||
};
|
||||
|
||||
patches = [
|
||||
(substituteAll {
|
||||
src = ./libmpv-path.patch;
|
||||
libmpv = "${lib.getLib mpv}/lib/libmpv${stdenv.hostPlatform.extensions.sharedLibrary}";
|
||||
})
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace usr/lib/hypnotix/hypnotix.py \
|
||||
--replace __DEB_VERSION__ ${version} \
|
||||
--replace /usr/share/hypnotix $out/share/hypnotix
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [
|
||||
gettext
|
||||
gobject-introspection
|
||||
python3.pkgs.wrapPython
|
||||
wrapGAppsHook
|
||||
];
|
||||
|
||||
dontWrapGApps = true;
|
||||
|
||||
buildInputs = [
|
||||
cinnamon.xapps
|
||||
];
|
||||
|
||||
pythonPath = with python3.pkgs; [
|
||||
imdbpy
|
||||
pygobject3
|
||||
requests
|
||||
setproctitle
|
||||
unidecode
|
||||
xapp
|
||||
];
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
mkdir -p $out
|
||||
cp -r usr/lib $out
|
||||
cp -r usr/share $out
|
||||
|
||||
glib-compile-schemas $out/share/glib-2.0/schemas
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
preFixup = ''
|
||||
buildPythonPath "$out $pythonPath"
|
||||
makeWrapper ${python3.interpreter} $out/bin/hypnotix \
|
||||
--add-flags $out/lib/hypnotix/hypnotix.py \
|
||||
--prefix PYTHONPATH : "$program_PYTHONPATH" \
|
||||
''${gappsWrapperArgs[@]}
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "IPTV streaming application";
|
||||
homepage = "https://github.com/linuxmint/hypnotix";
|
||||
license = lib.licenses.gpl3Plus;
|
||||
maintainers = with lib.maintainers; [ dotlambda ];
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
}
|
18
pkgs/applications/video/hypnotix/libmpv-path.patch
Normal file
18
pkgs/applications/video/hypnotix/libmpv-path.patch
Normal file
@ -0,0 +1,18 @@
|
||||
diff --git a/usr/lib/hypnotix/mpv.py b/usr/lib/hypnotix/mpv.py
|
||||
index f42a3be..f1fc40b 100644
|
||||
--- a/usr/lib/hypnotix/mpv.py
|
||||
+++ b/usr/lib/hypnotix/mpv.py
|
||||
@@ -44,12 +44,7 @@ else:
|
||||
# still better than segfaulting, we are setting LC_NUMERIC to "C".
|
||||
locale.setlocale(locale.LC_NUMERIC, 'C')
|
||||
|
||||
- sofile = ctypes.util.find_library('mpv')
|
||||
- if sofile is None:
|
||||
- raise OSError("Cannot find libmpv in the usual places. Depending on your distro, you may try installing an "
|
||||
- "mpv-devel or mpv-libs package. If you have libmpv around but this script can't find it, consult "
|
||||
- "the documentation for ctypes.util.find_library which this script uses to look up the library "
|
||||
- "filename.")
|
||||
+ sofile = '@libmpv@'
|
||||
backend = CDLL(sofile)
|
||||
fs_enc = sys.getfilesystemencoding()
|
||||
|
@ -27024,6 +27024,8 @@ with pkgs;
|
||||
|
||||
hyperledger-fabric = callPackage ../tools/misc/hyperledger-fabric { };
|
||||
|
||||
hypnotix = callPackage ../applications/video/hypnotix { };
|
||||
|
||||
indigenous-desktop = callPackage ../applications/networking/feedreaders/indigenous-desktop { };
|
||||
|
||||
jackline = callPackage ../applications/networking/instant-messengers/jackline { };
|
||||
|
Loading…
Reference in New Issue
Block a user