forked from mirrors/nixpkgs
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
45 lines
1.1 KiB
Nix
45 lines
1.1 KiB
Nix
{ lib, 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.20.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tridactyl";
|
|
repo = "tridactyl";
|
|
rev = version;
|
|
sha256 = "064cl9m4hdv69q1af0xjcf2rf30n3pvz6ym2l53w90aq3217amps";
|
|
};
|
|
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 lib; {
|
|
description = "Tridactyl native messaging host application";
|
|
homepage = "https://github.com/tridactyl/tridactyl";
|
|
license = licenses.asl20;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ timokau ];
|
|
};
|
|
}
|