Merge pull request #57593 from melchips/master
parlatype: init at version 1.6-beta
This commit is contained in:
commit
a9bbf7b44f
|
@ -2955,6 +2955,11 @@
|
||||||
github = "meisternu";
|
github = "meisternu";
|
||||||
name = "Matt Miemiec";
|
name = "Matt Miemiec";
|
||||||
};
|
};
|
||||||
|
melchips = {
|
||||||
|
email = "truphemus.francois@gmail.com";
|
||||||
|
github = "melchips";
|
||||||
|
name = "Francois Truphemus";
|
||||||
|
};
|
||||||
melsigl = {
|
melsigl = {
|
||||||
email = "melanie.bianca.sigl@gmail.com";
|
email = "melanie.bianca.sigl@gmail.com";
|
||||||
github = "melsigl";
|
github = "melsigl";
|
||||||
|
|
|
@ -0,0 +1,69 @@
|
||||||
|
{ stdenv, fetchFromGitHub, pkgconfig, meson, gnome3, at-spi2-core, dbus, gst_all_1, sphinxbase, pocketsphinx, ninja, gettext, appstream-glib, python3, glib, gobject-introspection, gsettings-desktop-schemas, itstool, wrapGAppsHook, makeWrapper, hicolor-icon-theme }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "parlatype";
|
||||||
|
version = "1.6-beta";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "gkarsay";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0bi0djic9kf178s7vl3y83v4rzhvynlvyf64n94fy80n2f100dj9";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
pkgconfig
|
||||||
|
meson
|
||||||
|
ninja
|
||||||
|
gettext
|
||||||
|
appstream-glib
|
||||||
|
python3
|
||||||
|
gobject-introspection
|
||||||
|
itstool
|
||||||
|
wrapGAppsHook
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
gnome3.gtk
|
||||||
|
at-spi2-core
|
||||||
|
dbus
|
||||||
|
gst_all_1.gstreamer
|
||||||
|
gst_all_1.gst-plugins-base
|
||||||
|
gst_all_1.gst-plugins-good
|
||||||
|
gst_all_1.gst-plugins-bad
|
||||||
|
gst_all_1.gst-plugins-ugly
|
||||||
|
gst_all_1.gst-libav
|
||||||
|
sphinxbase
|
||||||
|
pocketsphinx
|
||||||
|
glib
|
||||||
|
gsettings-desktop-schemas
|
||||||
|
hicolor-icon-theme
|
||||||
|
];
|
||||||
|
|
||||||
|
mesonFlags = [ "-Dlibreoffice=false" ];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
chmod +x data/meson_post_install.py
|
||||||
|
patchShebangs data/meson_post_install.py
|
||||||
|
'';
|
||||||
|
|
||||||
|
doCheck = false;
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
buildPhase = ''
|
||||||
|
export GST_PLUGIN_SYSTEM_PATH_1_0="$out/lib/gstreamer-1.0/:$GST_PLUGIN_SYSTEM_PATH_1_0"
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "GNOME audio player for transcription";
|
||||||
|
longDescription = ''
|
||||||
|
Parlatype is a minimal audio player for manual speech transcription, written for the GNOME desktop environment.
|
||||||
|
It plays audio sources to transcribe them in your favourite text application.
|
||||||
|
It’s intended to be useful for journalists, students, scientists and whoever needs to transcribe audio files.
|
||||||
|
'';
|
||||||
|
homepage = https://gkarsay.github.io/parlatype/;
|
||||||
|
license = licenses.gpl3Plus;
|
||||||
|
maintainers = [ maintainers.melchips ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
|
@ -18835,6 +18835,8 @@ in
|
||||||
|
|
||||||
paraview = libsForQt5.callPackage ../applications/graphics/paraview { };
|
paraview = libsForQt5.callPackage ../applications/graphics/paraview { };
|
||||||
|
|
||||||
|
parlatype = callPackage ../applications/audio/parlatype { };
|
||||||
|
|
||||||
packet = callPackage ../development/tools/packet { };
|
packet = callPackage ../development/tools/packet { };
|
||||||
|
|
||||||
pb_cli = callPackage ../tools/misc/pb_cli {};
|
pb_cli = callPackage ../tools/misc/pb_cli {};
|
||||||
|
|
Loading…
Reference in New Issue