mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
62 lines
1.6 KiB
Nix
62 lines
1.6 KiB
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
let
|
|
firefoxPaths = [
|
|
"lib/mozilla/native-messaging-hosts"
|
|
|
|
# wrapFirefox only links lib/mozilla path, so this is ineffective
|
|
# Still the above path works, despite documentation stating otherwise
|
|
# See: https://librewolf.net/docs/faq/#how-do-i-get-native-messaging-to-work
|
|
# "lib/librewolf/native-messaging-hosts"
|
|
];
|
|
|
|
chromiumPaths = [
|
|
"etc/chromium/native-messaging-hosts"
|
|
"etc/opt/vivaldi/native-messaging-hosts"
|
|
"etc/opt/chrome/native-messaging-hosts"
|
|
"etc/opt/edge/native-messaging-hosts"
|
|
];
|
|
in
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "ff2mpv-rust";
|
|
version = "1.1.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ryze312";
|
|
repo = "ff2mpv-rust";
|
|
rev = version;
|
|
hash = "sha256-hAhHfNiHzrzACrijpVkzpXqrqGYKI3HIJZtUuTrRIcQ=";
|
|
};
|
|
|
|
cargoHash = "sha256-EKmysiq1NTv1aQ1DZGS8bziY4lRr+KssBgXa8MO76Ac=";
|
|
|
|
postInstall = ''
|
|
$out/bin/ff2mpv-rust manifest > manifest.json
|
|
$out/bin/ff2mpv-rust manifest_chromium > manifest_chromium.json
|
|
|
|
for path in ${toString firefoxPaths}
|
|
do
|
|
mkdir -p "$out/$path"
|
|
cp manifest.json "$out/$path/ff2mpv.json"
|
|
done
|
|
|
|
for path in ${toString chromiumPaths}
|
|
do
|
|
mkdir -p "$out/$path"
|
|
cp manifest_chromium.json "$out/$path/ff2mpv.json"
|
|
done
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Native messaging host for ff2mpv written in Rust";
|
|
homepage = "https://github.com/ryze312/ff2mpv-rust";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ ryze ];
|
|
mainProgram = "ff2mpv-rust";
|
|
};
|
|
}
|