nixpkgs/pkgs/tools/text/odt2txt/default.nix
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

25 lines
609 B
Nix

{ lib, stdenv, fetchurl, zlib, libiconv }:
stdenv.mkDerivation rec {
pname = "odt2txt";
version = "0.5";
src = fetchurl {
url = "${meta.homepage}/archive/v${version}.tar.gz";
sha256 = "23a889109ca9087a719c638758f14cc3b867a5dcf30a6c90bf6a0985073556dd";
};
configurePhase="export makeFlags=\"DESTDIR=$out\"";
buildInputs = [ zlib libiconv ];
meta = {
description = "Simple .odt to .txt converter";
mainProgram = "odt2txt";
homepage = "https://github.com/dstosberg/odt2txt";
platforms = lib.platforms.all;
license = lib.licenses.gpl2;
maintainers = [ ];
};
}