nixpkgs/pkgs/servers/nitter/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

84 lines
1.5 KiB
Nix
Raw Normal View History

2022-06-04 18:45:21 +00:00
{ lib
2023-08-02 13:31:42 +00:00
, buildNimPackage
2022-06-04 18:45:21 +00:00
, fetchFromGitHub
, nimPackages
, nixosTests
, substituteAll
, unstableGitUpdater
2023-08-02 13:31:42 +00:00
, flatty
, jester
, jsony
, karax
, markdown
, nimcrypto
, packedjson
, redis
, redpool
, sass
, supersnappy
, zippy
2022-06-04 18:45:21 +00:00
}:
2021-07-23 16:17:25 +00:00
2023-08-02 13:31:42 +00:00
buildNimPackage rec {
2021-07-23 16:17:25 +00:00
pname = "nitter";
version = "unstable-2023-08-08";
2021-07-23 16:17:25 +00:00
src = fetchFromGitHub {
owner = "zedeus";
repo = "nitter";
rev = "d7ca353a55ea3440a2ec1f09155951210a374cc7";
hash = "sha256-nlpUzbMkDzDk1n4X+9Wk7+qQk+KOfs5ID6euIfHBoa8=";
2021-07-23 16:17:25 +00:00
};
patches = [
(substituteAll {
src = ./nitter-version.patch;
inherit version;
inherit (src) rev;
url = builtins.replaceStrings [ "archive" ".tar.gz" ] [ "commit" "" ] src.url;
})
];
2023-08-02 13:31:42 +00:00
buildInputs = [
2022-06-04 18:45:21 +00:00
flatty
2021-09-02 16:11:54 +00:00
jester
2022-06-04 18:45:21 +00:00
jsony
2021-09-02 16:11:54 +00:00
karax
markdown
2022-06-04 18:45:21 +00:00
nimcrypto
2021-09-02 16:11:54 +00:00
packedjson
redis
2022-06-04 18:45:21 +00:00
redpool
sass
supersnappy
zippy
2021-09-02 16:11:54 +00:00
];
2022-06-04 18:45:21 +00:00
nimBinOnly = true;
2023-08-02 13:31:42 +00:00
nimFlags = [ "--mm:refc" ];
2021-09-02 16:11:54 +00:00
postBuild = ''
nim c --hint[Processing]:off -r tools/gencss
nim c --hint[Processing]:off -r tools/rendermd
2021-07-23 16:17:25 +00:00
'';
2021-09-02 16:11:54 +00:00
postInstall = ''
2021-07-23 16:17:25 +00:00
mkdir -p $out/share/nitter
cp -r public $out/share/nitter/public
'';
passthru = {
tests = { inherit (nixosTests) nitter; };
updateScript = unstableGitUpdater {};
};
2021-07-23 16:17:25 +00:00
meta = with lib; {
homepage = "https://github.com/zedeus/nitter";
2022-06-04 18:45:21 +00:00
description = "Alternative Twitter front-end";
2021-07-23 16:17:25 +00:00
license = licenses.agpl3Only;
2023-04-09 18:35:35 +00:00
maintainers = with maintainers; [ erdnaxe infinidoge ];
2021-10-08 19:22:57 +00:00
mainProgram = "nitter";
2021-07-23 16:17:25 +00:00
};
}