mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
45 lines
1.1 KiB
Nix
45 lines
1.1 KiB
Nix
{ stdenv
|
|
, fetchFromGitHub
|
|
, python3
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "tridactyl-native";
|
|
# this is actually the version of tridactyl itself; the native messenger will
|
|
# probably not change with every tridactyl version
|
|
version = "1.18.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tridactyl";
|
|
repo = "tridactyl";
|
|
rev = version;
|
|
sha256 = "0f4agsh0gqpyhl3nysv4x9f74hlnch27gp3l8bpl645kbbfkg0di";
|
|
};
|
|
sourceRoot = "source/native";
|
|
|
|
nativeBuildInputs = [
|
|
python3.pkgs.wrapPython
|
|
];
|
|
|
|
buildPhase = ''
|
|
sed -i -e "s|REPLACE_ME_WITH_SED|$out/share/tridactyl/native_main.py|" "tridactyl.json"
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p "$out/lib/mozilla/native-messaging-hosts"
|
|
cp tridactyl.json "$out/lib/mozilla/native-messaging-hosts/"
|
|
|
|
mkdir -p "$out/share/tridactyl"
|
|
cp native_main.py "$out/share/tridactyl"
|
|
wrapPythonProgramsIn "$out/share/tridactyl"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Tridactyl native messaging host application";
|
|
homepage = "https://github.com/tridactyl/tridactyl";
|
|
license = licenses.asl20;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ timokau ];
|
|
};
|
|
}
|