mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 16:23:26 +00:00
74 lines
1.6 KiB
Nix
74 lines
1.6 KiB
Nix
{ lib
|
|
, ocamlPackages
|
|
, stdenv
|
|
, overrideSDK
|
|
, fetchFromGitHub
|
|
, python3
|
|
, dune_3
|
|
, makeWrapper
|
|
, pandoc
|
|
, poppler_utils
|
|
, testers
|
|
, docfd
|
|
}:
|
|
|
|
let
|
|
# Needed for x86_64-darwin
|
|
buildDunePackage' = ocamlPackages.buildDunePackage.override {
|
|
stdenv = if stdenv.isDarwin then overrideSDK stdenv "11.0" else stdenv;
|
|
};
|
|
in
|
|
buildDunePackage' rec {
|
|
pname = "docfd";
|
|
version = "4.0.0";
|
|
|
|
minimalOCamlVersion = "5.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "darrenldl";
|
|
repo = "docfd";
|
|
rev = version;
|
|
hash = "sha256-fgwUXRZ6k5i3XLxXpjbrl0TJZMT+NkGXf7KNwRgi+q8=";
|
|
};
|
|
|
|
nativeBuildInputs = [ python3 dune_3 makeWrapper ];
|
|
buildInputs = with ocamlPackages; [
|
|
cmdliner
|
|
containers-data
|
|
digestif
|
|
domainslib
|
|
eio_main
|
|
lwd
|
|
nottui
|
|
notty
|
|
ocolor
|
|
oseq
|
|
spelll
|
|
timedesc
|
|
yojson
|
|
];
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/docfd --prefix PATH : "${lib.makeBinPath [ pandoc poppler_utils ]}"
|
|
'';
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = docfd;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "TUI multiline fuzzy document finder";
|
|
longDescription = ''
|
|
Think interactive grep for text and other document files.
|
|
Word/token based instead of regex and line based, so you
|
|
can search across lines easily. Aims to provide good UX via
|
|
integration with common text editors and other file viewers.
|
|
'';
|
|
homepage = "https://github.com/darrenldl/docfd";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ chewblacka ];
|
|
platforms = platforms.all;
|
|
mainProgram = "docfd";
|
|
};
|
|
}
|