4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
31 lines
885 B
Nix
31 lines
885 B
Nix
{ stdenv, lib, fetchFromGitHub, makeWrapper, unzip, catdoc }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "catdocx-20170102";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jncraton";
|
|
repo = "catdocx";
|
|
rev = "04fa0416ec1f116d4996685e219f0856d99767cb";
|
|
sha256 = "1sxiqhkvdqn300ygfgxdry2dj2cqzjhkzw13c6349gg5vxfypcjh";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/libexec $out/bin
|
|
cp catdocx.sh $out/libexec
|
|
chmod +x $out/libexec/catdocx.sh
|
|
wrapProgram $out/libexec/catdocx.sh --prefix PATH : "${lib.makeBinPath [ unzip catdoc ]}"
|
|
ln -s $out/libexec/catdocx.sh $out/bin/catdocx
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Extracts plain text from docx files";
|
|
homepage = "https://github.com/jncraton/catdocx";
|
|
license = with licenses; [ bsd3 ];
|
|
maintainers = [ maintainers.michalrus ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|