summary refs log tree commit diff
path: root/pkgs/tools/text
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2018-06-09 14:35:06 -0700
committerxeji <36407913+xeji@users.noreply.github.com>2018-06-09 23:35:06 +0200
commit00156c3caea9c651d5d1d3dcafa2a9729dcdbd81 (patch)
treea523fada650b42914b476a400b046a3691ec2c80 /pkgs/tools/text
parentc283f18b0f20a92d77902116b1b0680401cd4d60 (diff)
downloadnixpkgs-00156c3caea9c651d5d1d3dcafa2a9729dcdbd81.tar
nixpkgs-00156c3caea9c651d5d1d3dcafa2a9729dcdbd81.tar.gz
nixpkgs-00156c3caea9c651d5d1d3dcafa2a9729dcdbd81.tar.bz2
nixpkgs-00156c3caea9c651d5d1d3dcafa2a9729dcdbd81.tar.lz
nixpkgs-00156c3caea9c651d5d1d3dcafa2a9729dcdbd81.tar.xz
nixpkgs-00156c3caea9c651d5d1d3dcafa2a9729dcdbd81.tar.zst
nixpkgs-00156c3caea9c651d5d1d3dcafa2a9729dcdbd81.zip
fanficfare: 2.25.0 -> 2.26.0 (#41569)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/fanficfare/versions.

These checks were done:

- built on NixOS
- /nix/store/8xysybhmjya5wx4rsykxk7d9f37g3qbk-fanficfare-2.26.0/bin/.fanficfare-wrapped passed the binary check.
- /nix/store/8xysybhmjya5wx4rsykxk7d9f37g3qbk-fanficfare-2.26.0/bin/fanficfare passed the binary check.
- 2 of 2 passed binary check by having a zero exit code.
- 2 of 2 passed binary check by having the new version present in output.
- found 2.26.0 with grep in /nix/store/8xysybhmjya5wx4rsykxk7d9f37g3qbk-fanficfare-2.26.0
- directory tree listing: https://gist.github.com/8dac0cbfced5624b49e894cfb51f13be
- du listing: https://gist.github.com/3710839076360d257f245cd976e974fa
Diffstat (limited to 'pkgs/tools/text')
-rw-r--r--pkgs/tools/text/fanficfare/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/text/fanficfare/default.nix b/pkgs/tools/text/fanficfare/default.nix
index 2ebab9d6390..7a395eb8905 100644
--- a/pkgs/tools/text/fanficfare/default.nix
+++ b/pkgs/tools/text/fanficfare/default.nix
@@ -1,13 +1,13 @@
 { stdenv, fetchurl, python27Packages }:
 
 python27Packages.buildPythonApplication rec {
-  version = "2.25.0";
+  version = "2.26.0";
   name = "fanficfare-${version}";
   nameprefix = "";
 
   src = fetchurl {
     url = "https://github.com/JimmXinu/FanFicFare/archive/v${version}.tar.gz";
-    sha256 = "1fval2jhrv3w762rmrbhbn8zj161aalvqy8n8q74yr8hzmpcvlwn";
+    sha256 = "1gas5x0xzkxnc0rvyi04phzxpxxd1jfmx9a7l2fhqmlw67lml4rr";
   };
 
   propagatedBuildInputs = with python27Packages; [ beautifulsoup4 chardet html5lib html2text ];