nixpkgs/pkgs/tools/networking/tridactyl-native/default.nix
R. RyanTM 09148726a2 tridactyl-native: 1.16.2 -> 1.16.3 (#66874)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/tridactyl-native/versions
2019-08-19 13:28:57 +02:00

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.16.3";
src = fetchFromGitHub {
owner = "tridactyl";
repo = "tridactyl";
rev = version;
sha256 = "1cp2iaa9fhlxmbml41wnq984jp2r75n6w0qxz38rd24jxsj5vz06";
};
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 ];
};
}