odt2txt: 0.4 -> 0.5

Version 0.4 failed to build for me on MacOS 10.12.6 (16G1314). (Might be related to the removed libiconv-hacks.) Version 0.5 as specified builds cleanly. Not tested on any other platforms though.

Also 0.4 is from 2008 while 0.5 was released in 2014.

The old homepage now redirects to the GitHub repo.
This commit is contained in:
Daniel Sandbecker
2018-06-07 23:20:09 +02:00
committed by GitHub
parent 673628e10c
commit 876b6406d3

View File

@@ -1,11 +1,12 @@
{ stdenv, fetchurl, zlib, libiconv }:
stdenv.mkDerivation rec {
name = "odt2txt-0.4";
name = "odt2txt-${version}";
version = "0.5";
src = fetchurl {
url = "${meta.homepage}/${name}.tar.gz";
sha256 = "1y36s7w2ng0r4nismxb3hb3zvsim8aimvvblz9hgnanw3kwbvx55";
url = "${meta.homepage}/archive/v${version}.tar.gz";
sha256 = "23a889109ca9087a719c638758f14cc3b867a5dcf30a6c90bf6a0985073556dd";
};
configurePhase="export makeFlags=\"DESTDIR=$out\"";
@@ -14,7 +15,7 @@ stdenv.mkDerivation rec {
meta = {
description = "Simple .odt to .txt converter";
homepage = http://stosberg.net/odt2txt;
homepage = https://github.com/dstosberg/odt2txt;
platforms = stdenv.lib.platforms.all;
license = stdenv.lib.licenses.gpl2;
maintainers = [ ];