nix/overlays/bleve.nix (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | { lib , stdenv , fetchFromGitHub , installShellFiles , buildGoModule }: let gomod = builtins.fromTOML (builtins.readFile ./../../gomod2nix.toml); version = gomod.mod."github.com/blevesearch/bleve/v2".version; in buildGoModule rec { pname = "bleve"; inherit version; src = fetchFromGitHub { owner = "blevesearch"; repo = "bleve"; rev = version; hash = "sha256-PObwFsaQZKvkdQywIMKbp9cWVuqYFAa0P7rpeP7JSxU="; }; vendorHash = "sha256-6C8EA2XCxP6KFAdDzWhqa26UpfW5YBEeWsSPQHxhFIU="; subPackages = [ "cmd/bleve" ]; nativeBuildInputs = [ installShellFiles ]; postInstall = lib.optionalString (stdenv.buildPlatform == stdenv.targetPlatform) '' installShellCompletion --cmd bleve \ --bash <($out/bin/bleve completion bash) \ --fish <($out/bin/bleve completion fish) \ --zsh <($out/bin/bleve completion zsh) ''; meta = { description = "Command-line tool to interact with bleve indexes"; homepage = "http://blevesearch.com"; licenses = lib.licenses.asl20; }; } |