mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
52 lines
1.1 KiB
Nix
52 lines
1.1 KiB
Nix
{ lib
|
|
, python3
|
|
, fetchFromGitHub
|
|
, dbus
|
|
, signal-cli
|
|
, xclip
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "scli";
|
|
version = "0.6.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "isamert";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "0fx9ig08whl7bsii9m1h9wp361ngf1szd8v8yqglgl0x8044fwrk";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
pyqrcode
|
|
urwid
|
|
urwid-readline
|
|
];
|
|
|
|
dontBuild = true;
|
|
|
|
checkPhase = ''
|
|
# scli attempts to write to these directories, make sure they're writeable
|
|
export XDG_DATA_HOME=$(mktemp -d)
|
|
export XDG_CONFIG_HOME=$(mktemp -d)
|
|
./scli --help > /dev/null # don't spam nix-build log
|
|
test $? == 0
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
patchShebangs scli
|
|
install -m755 -D scli $out/bin/scli
|
|
'';
|
|
|
|
makeWrapperArgs = [
|
|
"--prefix" "PATH" ":" (lib.makeBinPath [ dbus signal-cli xclip ])
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Simple terminal user interface for Signal";
|
|
homepage = "https://github.com/isamert/scli";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ alex-eyre ];
|
|
};
|
|
}
|