about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/networking/feedreaders/russ/default.nix
blob: 6780b58f0d018c89667916bfbf32ad5f0d420372 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ lib
, stdenv
, fetchFromGitHub
, rustPlatform
, xorg
}:

rustPlatform.buildRustPackage {
  pname = "russ";
  version = "0.4.0";

  src = fetchFromGitHub {
    owner = "ckampfe";
    repo = "russ";
    rev = "1482bb1df13738fdd4ea1badf2146a9ed8e6656e";
    hash = "sha256-MvTMo2q/cQ/LQNdUV8SmHgGlA42kLl0i9mdcoAFV/I4=";
  };

  cargoHash = "sha256-ObWrwXMGXkLqqM7VXhOXArshk2lVkbOTXhrQImDQp1s=";

  # tests are network based :(
  doCheck = false;

  meta = with lib; {
    description = "A TUI RSS reader with vim-like controls and a local-first, offline-first focus";
    mainProgram = "russ";
    homepage = "https://github.com/ckampfe/russ";
    license = with licenses; [ agpl3Only ];
    maintainers = with maintainers; [ blusk ];
    changelog = "https://github.com/ckampfe/russ/blob/master/CHANGELOG.md";
    broken = stdenv.isDarwin;
  };
}