mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-18 02:05:51 +03:00
Merge pull request #44245 from Infinisil/add/bukubrow
bukubrow: Init at 2.4.0
This commit is contained in:
commit
cb19404faf
@ -7,7 +7,7 @@
|
||||
, trezor-bridge, bluejeans, djview4, adobe-reader
|
||||
, google_talk_plugin, fribid, gnome3/*.gnome-shell*/
|
||||
, esteidfirefoxplugin
|
||||
, browserpass, chrome-gnome-shell, uget-integrator, plasma-browser-integration
|
||||
, browserpass, chrome-gnome-shell, uget-integrator, plasma-browser-integration, bukubrow
|
||||
, udev
|
||||
, kerberos
|
||||
}:
|
||||
@ -61,6 +61,7 @@ let
|
||||
nativeMessagingHosts =
|
||||
([ ]
|
||||
++ lib.optional (cfg.enableBrowserpass or false) (lib.getBin browserpass)
|
||||
++ lib.optional (cfg.enableBukubrow or false) bukubrow
|
||||
++ lib.optional (cfg.enableGnomeExtensions or false) chrome-gnome-shell
|
||||
++ lib.optional (cfg.enableUgetIntegrator or false) uget-integrator
|
||||
++ lib.optional (cfg.enablePlasmaBrowserIntegration or false) plasma-browser-integration
|
||||
|
37
pkgs/tools/networking/bukubrow/default.nix
Normal file
37
pkgs/tools/networking/bukubrow/default.nix
Normal file
@ -0,0 +1,37 @@
|
||||
{ stdenv, rustPlatform, fetchFromGitHub, sqlite }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
name = "bukubrow-${version}";
|
||||
version = "2.4.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "SamHH";
|
||||
repo = "bukubrow";
|
||||
rev = version;
|
||||
sha256 = "1wrwav7am73bmgbpwh1pi0b8k7vhydqvw91hmmhnvbjhrhbns7s5";
|
||||
};
|
||||
sourceRoot = "source/binary";
|
||||
|
||||
cargoSha256 = "19d1pgk8nm5jsfd696bqayi5s8ivv9gi6jdb00d10ddjxz234gs7";
|
||||
|
||||
buildInputs = [ sqlite ];
|
||||
|
||||
postInstall = ''
|
||||
mkdir -p $out/etc $out/lib/mozilla/native-messaging-hosts
|
||||
|
||||
host_file="$out/bin/bukubrow"
|
||||
sed -e "s!%%replace%%!$host_file!" browser-hosts/firefox.json > "$out/etc/firefox-host.json"
|
||||
sed -e "s!%%replace%%!$host_file!" browser-hosts/chrome.json > "$out/etc/chrome-host.json"
|
||||
|
||||
ln -s $out/etc/firefox-host.json $out/lib/mozilla/native-messaging-hosts/com.samhh.bukubrow.json
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Bukubrow is a WebExtension for Buku, a command-line bookmark manager";
|
||||
homepage = https://github.com/SamHH/bukubrow;
|
||||
license = licenses.gpl3;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ infinisil ];
|
||||
};
|
||||
}
|
||||
|
@ -967,6 +967,8 @@ with pkgs;
|
||||
|
||||
buildah = callPackage ../development/tools/buildah { };
|
||||
|
||||
bukubrow = callPackage ../tools/networking/bukubrow { };
|
||||
|
||||
burpsuite = callPackage ../tools/networking/burpsuite {};
|
||||
|
||||
c3d = callPackage ../applications/graphics/c3d {
|
||||
|
Loading…
Reference in New Issue
Block a user