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
38 lines
1.1 KiB
Nix
38 lines
1.1 KiB
Nix
{ lib, stdenv, fetchurl, python, unzip, wxPython, wrapPython, tor }:
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "torchat";
|
|
version = "0.9.9.553";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/prof7bit/TorChat/archive/${version}.tar.gz";
|
|
sha256 = "0rb4lvv40pz6ab5kxq40ycvh7kh1yxn7swzgv2ff2nbhi62xnzp0";
|
|
};
|
|
|
|
buildInputs = [ python unzip wxPython wrapPython ];
|
|
pythonPath = [ wxPython ];
|
|
|
|
preConfigure = "cd torchat/src; rm portable.txt";
|
|
|
|
installPhase = ''
|
|
substituteInPlace "Tor/tor.sh" --replace "tor -f" "${tor}/bin/tor -f"
|
|
|
|
wrapPythonPrograms
|
|
|
|
mkdir -p $out/lib/torchat
|
|
cp -rf * $out/lib/torchat
|
|
makeWrapper ${python}/bin/python $out/bin/torchat \
|
|
--set PYTHONPATH $out/lib/torchat:$program_PYTHONPATH \
|
|
--run "cd $out/lib/torchat" \
|
|
--add-flags "-O $out/lib/torchat/torchat.py"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/prof7bit/TorChat";
|
|
description = "Instant messaging application on top of the Tor network and it's location hidden services";
|
|
license = licenses.gpl3;
|
|
maintainers = [ maintainers.phreedom ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|