rio: 0.0.36 -> 0.0.37
[NixPkgs.git] / pkgs / tools / networking / bukubrow / default.nix
blob7d7711dac1e4e95916e0354cce42c5e8e5ca8d46
1 { lib, rustPlatform, fetchFromGitHub, sqlite }: let
3 manifest = {
4   description = "Bukubrow extension host application";
5   name = "com.samhh.bukubrow";
6   path = "@out@/bin/bukubrow";
7   type = "stdio";
8 };
10 in rustPlatform.buildRustPackage rec {
11   pname = "bukubrow-host";
12   version = "5.4.0";
14   src = fetchFromGitHub {
15     owner = "SamHH";
16     repo = pname;
17     rev = "v${version}";
18     sha256 = "sha256-xz5Agsm+ATQXXgpPGN4EQ00i1t8qUlrviNHauVdCu4U=";
19   };
21   cargoSha256 = "sha256-mH76ODPKlKDEK9ckThPnL5Ar7p1l1gNd7zXfesLZlBM=";
23   buildInputs = [ sqlite ];
25   passAsFile = [ "firefoxManifest" "chromeManifest" ];
26   firefoxManifest = builtins.toJSON (manifest // {
27     allowed_extensions = [ "bukubrow@samhh.com" ];
28   });
29   chromeManifest = builtins.toJSON (manifest // {
30     allowed_origins = [ "chrome-extension://ghniladkapjacfajiooekgkfopkjblpn/" ];
31   });
32   postBuild = ''
33     substituteAll $firefoxManifestPath firefox.json
34     substituteAll $chromeManifestPath chrome.json
35   '';
36   postInstall = ''
37     install -Dm0644 firefox.json $out/lib/mozilla/native-messaging-hosts/com.samhh.bukubrow.json
38     install -Dm0644 chrome.json $out/etc/chromium/native-messaging-hosts/com.samhh.bukubrow.json
39   '';
41   meta = with lib; {
42     description = "A WebExtension for Buku, a command-line bookmark manager";
43     homepage = "https://github.com/SamHH/bukubrow-host";
44     license = licenses.gpl3;
45     maintainers = [ ];
46     mainProgram = "bukubrow";
47   };