mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
63 lines
1.1 KiB
Nix
63 lines
1.1 KiB
Nix
{ fetchFromSourcehut
|
|
, file
|
|
, installShellFiles
|
|
, less
|
|
, lib
|
|
, offpunk
|
|
, python3Packages
|
|
, testers
|
|
, timg
|
|
, xdg-utils
|
|
, xsel
|
|
,
|
|
}:
|
|
|
|
let
|
|
pythonDependencies = with python3Packages; [
|
|
beautifulsoup4
|
|
chardet
|
|
cryptography
|
|
feedparser
|
|
pillow
|
|
readability-lxml
|
|
requests
|
|
setproctitle
|
|
];
|
|
otherDependencies = [
|
|
file
|
|
less
|
|
timg
|
|
xdg-utils
|
|
xsel
|
|
];
|
|
in
|
|
python3Packages.buildPythonPackage rec {
|
|
pname = "offpunk";
|
|
version = "2.0";
|
|
format = "pyproject";
|
|
|
|
disabled = python3Packages.pythonOlder "3.7";
|
|
|
|
src = fetchFromSourcehut {
|
|
owner = "~lioploum";
|
|
repo = "offpunk";
|
|
rev = "v${version}";
|
|
hash = "sha256-6ftc2goCNgvXf5kszvjeSHn24Hn73jq26Irl5jiN6pk=";
|
|
};
|
|
|
|
nativeBuildInputs = [ python3Packages.hatchling installShellFiles ];
|
|
propagatedBuildInputs = otherDependencies ++ pythonDependencies;
|
|
|
|
postInstall = ''
|
|
installManPage man/*.1
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "An Offline-First browser for the smolnet ";
|
|
homepage = src.meta.homepage;
|
|
maintainers = with maintainers; [ DamienCassou ];
|
|
platforms = platforms.linux;
|
|
license = licenses.agpl3Plus;
|
|
};
|
|
}
|