summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlexander Shpilkin <ashpilkin@gmail.com>2022-10-12 14:41:20 +0300
committerAlexander Shpilkin <ashpilkin@gmail.com>2022-10-12 14:41:20 +0300
commit16ead09b5e3ab9b1c7a5dc43bb6ad497ccba8f4d (patch)
tree429c7e82f1c941da2b14d408102fea71a2543069
parent0aa7db6030704cfef15de8e3fd90bfe26b01793c (diff)
downloadnixpkgs-16ead09b5e3ab9b1c7a5dc43bb6ad497ccba8f4d.tar
nixpkgs-16ead09b5e3ab9b1c7a5dc43bb6ad497ccba8f4d.tar.gz
nixpkgs-16ead09b5e3ab9b1c7a5dc43bb6ad497ccba8f4d.tar.bz2
nixpkgs-16ead09b5e3ab9b1c7a5dc43bb6ad497ccba8f4d.tar.lz
nixpkgs-16ead09b5e3ab9b1c7a5dc43bb6ad497ccba8f4d.tar.xz
nixpkgs-16ead09b5e3ab9b1c7a5dc43bb6ad497ccba8f4d.tar.zst
nixpkgs-16ead09b5e3ab9b1c7a5dc43bb6ad497ccba8f4d.zip
parlatype: sort dependencies and reformat
-rw-r--r--pkgs/applications/audio/parlatype/default.nix59
1 files changed, 41 insertions, 18 deletions
diff --git a/pkgs/applications/audio/parlatype/default.nix b/pkgs/applications/audio/parlatype/default.nix
index 71cfe338c62..6aa92a3a99f 100644
--- a/pkgs/applications/audio/parlatype/default.nix
+++ b/pkgs/applications/audio/parlatype/default.nix
@@ -1,41 +1,62 @@
-{ lib, stdenv, fetchFromGitHub, pkg-config, meson, gtk3, dbus, gst_all_1, ninja, gettext, appstream-glib, python3, desktop-file-utils, glib, gobject-introspection, gsettings-desktop-schemas, isocodes, itstool, libxml2, wrapGAppsHook, hicolor-icon-theme }:
+{ lib
+, stdenv
+, fetchFromGitHub
+, appstream-glib
+, dbus
+, desktop-file-utils
+, gettext
+, glib
+, gobject-introspection
+, gsettings-desktop-schemas
+, gst_all_1
+, gtk3
+, hicolor-icon-theme
+, isocodes
+, itstool
+, libxml2
+, meson
+, ninja
+, pkg-config
+, python3
+, wrapGAppsHook
+}:
 
 stdenv.mkDerivation rec {
   pname = "parlatype";
   version = "3.1";
 
   src = fetchFromGitHub {
-    owner  = "gkarsay";
-    repo   = pname;
-    rev    = "v${version}";
+    owner = "gkarsay";
+    repo = pname;
+    rev = "v${version}";
     sha256 = "1a4xlsbszb50vnz1g7kf7hl7aywp7s7xaravkcx13csn0a7l3x45";
   };
 
   nativeBuildInputs = [
-    pkg-config
-    meson
-    ninja
-    gettext
     appstream-glib
-    python3
     desktop-file-utils
+    gettext
     gobject-introspection
     itstool
     libxml2
+    meson
+    ninja
+    pkg-config
+    python3
     wrapGAppsHook
   ];
 
   buildInputs = [
-    gtk3
     dbus
-    gst_all_1.gstreamer
+    glib
+    gsettings-desktop-schemas
+    gst_all_1.gst-libav
+    gst_all_1.gst-plugins-bad
     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
-    glib
-    gsettings-desktop-schemas
+    gst_all_1.gstreamer
+    gtk3
     hicolor-icon-theme
     isocodes
   ];
@@ -50,9 +71,11 @@ stdenv.mkDerivation rec {
   meta = with 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.
+      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://www.parlatype.org/";
     license = licenses.gpl3Plus;