1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 21:21:06 +00:00
nixpkgs/pkgs/servers/nitter/default.nix

52 lines
1.1 KiB
Nix
Raw Normal View History

2021-09-02 17:11:54 +01:00
{ lib, nimPackages, nixosTests, fetchFromGitHub, libsass }:
2021-07-23 17:17:25 +01:00
2021-09-02 17:11:54 +01:00
nimPackages.buildNimPackage rec {
2021-07-23 17:17:25 +01:00
pname = "nitter";
version = "unstable-2021-07-18";
2021-09-02 17:11:54 +01:00
nimBinOnly = true;
2021-07-23 17:17:25 +01:00
src = fetchFromGitHub {
owner = "zedeus";
repo = "nitter";
rev = "6c5cb01b294d4f6e3b438fc47683359eb0fe5057";
sha256 = "1dl8ndyv8m1hnydrp5xilcpp2cfbp02d5jap3y42i4nazc9ar6p4";
};
2021-09-02 17:11:54 +01:00
buildInputs = with nimPackages; [
jester
karax
sass
regex
unicodedb
unicodeplus
segmentation
nimcrypto
markdown
packedjson
supersnappy
redpool
frosty
redis
];
postBuild = ''
nim c --hint[Processing]:off -r tools/gencss
2021-07-23 17:17:25 +01:00
'';
2021-09-02 17:11:54 +01:00
postInstall = ''
2021-07-23 17:17:25 +01:00
mkdir -p $out/share/nitter
cp -r public $out/share/nitter/public
'';
2021-09-02 17:11:54 +01:00
passthru.tests = { inherit (nixosTests) nitter; };
2021-08-08 14:33:08 +01:00
2021-07-23 17:17:25 +01:00
meta = with lib; {
description = "Alternative Twitter front-end";
homepage = "https://github.com/zedeus/nitter";
maintainers = with maintainers; [ erdnaxe ];
license = licenses.agpl3Only;
platforms = [ "x86_64-linux" ];
2021-10-08 20:22:57 +01:00
mainProgram = "nitter";
2021-07-23 17:17:25 +01:00
};
}