nixpkgs/pkgs/servers/nitter/default.nix

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

50 lines
1.0 KiB
Nix
Raw Normal View History

2021-09-02 16:11:54 +00:00
{ lib, nimPackages, nixosTests, fetchFromGitHub, libsass }:
2021-07-23 16:17:25 +00:00
2021-09-02 16:11:54 +00:00
nimPackages.buildNimPackage rec {
2021-07-23 16:17:25 +00:00
pname = "nitter";
version = "unstable-2022-05-13";
2021-09-02 16:11:54 +00:00
nimBinOnly = true;
2021-07-23 16:17:25 +00:00
src = fetchFromGitHub {
owner = "zedeus";
repo = "nitter";
rev = "683c052036b268028f0ecae020a1519bc586516d";
sha256 = "179z66jlwbdarrgvpdh8aqy2ihkiakd22wqydrfgpsgr59ma8fgl";
2021-07-23 16:17:25 +00:00
};
2021-09-02 16:11:54 +00:00
buildInputs = with nimPackages; [
jester
karax
sass
nimcrypto
markdown
packedjson
supersnappy
redpool
redis
zippy
flatty
jsony
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
'';
2021-09-02 16:11:54 +00:00
passthru.tests = { inherit (nixosTests) nitter; };
2021-08-08 13:33:08 +00:00
2021-07-23 16:17:25 +00:00
meta = with lib; {
description = "Alternative Twitter front-end";
homepage = "https://github.com/zedeus/nitter";
maintainers = with maintainers; [ erdnaxe ];
license = licenses.agpl3Only;
2021-10-08 19:22:57 +00:00
mainProgram = "nitter";
2021-07-23 16:17:25 +00:00
};
}