summary refs log tree commit diff
path: root/pkgs/applications/video/subtitleeditor
diff options
context:
space:
mode:
authorJosé Romildo Malaquias <malaquias@gmail.com>2018-01-12 22:14:12 -0200
committerJosé Romildo Malaquias <malaquias@gmail.com>2018-01-12 22:14:12 -0200
commitdbf5d1d433f8f24937ea8377455cad9a3ab21861 (patch)
treecfcb5b959bd9f1892fffc2d2aa9f8c0760db29a7 /pkgs/applications/video/subtitleeditor
parent1334e8415c7276d6672386bb2def21769607ed62 (diff)
downloadnixpkgs-dbf5d1d433f8f24937ea8377455cad9a3ab21861.tar
nixpkgs-dbf5d1d433f8f24937ea8377455cad9a3ab21861.tar.gz
nixpkgs-dbf5d1d433f8f24937ea8377455cad9a3ab21861.tar.bz2
nixpkgs-dbf5d1d433f8f24937ea8377455cad9a3ab21861.tar.lz
nixpkgs-dbf5d1d433f8f24937ea8377455cad9a3ab21861.tar.xz
nixpkgs-dbf5d1d433f8f24937ea8377455cad9a3ab21861.tar.zst
nixpkgs-dbf5d1d433f8f24937ea8377455cad9a3ab21861.zip
subtitleeditor: 0.53.0 -> 0.54.0
Diffstat (limited to 'pkgs/applications/video/subtitleeditor')
-rw-r--r--pkgs/applications/video/subtitleeditor/default.nix36
1 files changed, 13 insertions, 23 deletions
diff --git a/pkgs/applications/video/subtitleeditor/default.nix b/pkgs/applications/video/subtitleeditor/default.nix
index 88768b3cb8f..536b4ba0fac 100644
--- a/pkgs/applications/video/subtitleeditor/default.nix
+++ b/pkgs/applications/video/subtitleeditor/default.nix
@@ -1,29 +1,24 @@
-{ stdenv, fetchurl, fetchpatch, pkgconfig, intltool, file, desktop_file_utils,
-  enchant, gnome3, gst_all_1, hicolor_icon_theme, libsigcxx, libxmlxx,
-  xdg_utils, isocodes, wrapGAppsHook
+{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, intltool, file,
+  desktop_file_utils, enchant, gnome3, gst_all_1, hicolor_icon_theme,
+  libsigcxx, libxmlxx, xdg_utils, isocodes, wrapGAppsHook
 }:
 
 let
-  ver_maj = "0.53";
-  ver_min = "0";
+  version = "0.54.0";
 in
 
 stdenv.mkDerivation rec {
-  name = "subtitle-editor-${ver_maj}.${ver_min}";
+  name = "subtitleeditor-${version}";
 
-  src = fetchurl {
-    url = "http://download.gna.org/subtitleeditor/${ver_maj}/subtitleeditor-${ver_maj}.${ver_min}.tar.gz";
-    sha256 = "087rxignjawby4z3lwnh9m6pcjphl3a0jf7gfp83h92mzcq79b4g";
+  src = fetchFromGitHub {
+    owner = "kitone";
+    repo = "subtitleeditor";
+    rev = version;
+    sha256 = "0vxcscc9m6gymgj173ahk2g9hlk9588z5fdaavmkpyriqdlhwm11";
   };
 
-  patches = [
-    (fetchpatch {
-      url = "https://sources.debian.net/data/main/s/subtitleeditor/0.53.0-2/debian/patches/03-fix-build-gstreamermm-1.8.0.patch";
-      sha256 = "0di2i34id5dqnd3glibhifair1kdfnv8ay3k64lirad726ardw2c";
-    })
-  ];
-
   nativeBuildInputs =  [
+    autoreconfHook
     pkgconfig
     intltool
     file
@@ -48,11 +43,6 @@ stdenv.mkDerivation rec {
 
   enableParallelBuilding = true;
 
-  # disable check because currently making check in po fails
-  doCheck = false;
-
-  hardeningDisable = [ "format" ];
-
   preConfigure = "substituteInPlace ./configure --replace /usr/bin/file ${file}/bin/file";
 
   configureFlags = [ "--disable-debug" ];
@@ -65,9 +55,9 @@ stdenv.mkDerivation rec {
       and refine existing subtitle. This program also shows sound waves, which
       makes it easier to synchronise subtitles to voices.
       '';
-    homepage = http://home.gna.org/subtitleeditor;
+    homepage = http://kitone.github.io/subtitleeditor/;
     license = stdenv.lib.licenses.gpl3Plus;
-    maintainers = [ stdenv.lib.maintainers.plcplc ];
     platforms = stdenv.lib.platforms.linux;
+    maintainers = [ stdenv.lib.maintainers.plcplc ];
   };
 }