File tree Expand file tree Collapse file tree 3 files changed +41
-39
lines changed
applications/networking/feedreaders/russ Expand file tree Collapse file tree 3 files changed +41
-39
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ {
2+ lib ,
3+ stdenv ,
4+ fetchFromGitHub ,
5+ rustPlatform ,
6+ darwin ,
7+ } :
8+
9+ rustPlatform . buildRustPackage {
10+ pname = "russ" ;
11+ version = "0.5.0" ;
12+
13+ src = fetchFromGitHub {
14+ owner = "ckampfe" ;
15+ repo = "russ" ;
16+ rev = "b21aa80ebc9dc2668463386f9eb270b1782d5842" ;
17+ hash = "sha256-/76CvSBYim831OZzLhsj2Hm+0hoY/FLtKQqt19E5YOI=" ;
18+ } ;
19+
20+ cargoHash = "sha256-d3lJQafvBuj9Sb2Tuep3Ypt1sP+vlWHk4kuP99gMly8=" ;
21+
22+ # tests are network based :(
23+ doCheck = false ;
24+
25+ buildInputs = lib . optionals stdenv . hostPlatform . isDarwin (
26+ with darwin . apple_sdk . frameworks ;
27+ [
28+ CoreServices
29+ AppKit
30+ ]
31+ ) ;
32+
33+ meta = {
34+ changelog = "https://github.com/ckampfe/russ/blob/master/CHANGELOG.md" ;
35+ description = "TUI RSS reader with vim-like controls and a local-first, offline-first focus" ;
36+ homepage = "https://github.com/ckampfe/russ" ;
37+ license = with lib . licenses ; [ agpl3Only ] ;
38+ maintainers = with lib . maintainers ; [ blusk ] ;
39+ mainProgram = "russ" ;
40+ } ;
41+ }
Original file line number Diff line number Diff line change @@ -13096,8 +13096,6 @@ with pkgs;
1309613096 inherit (darwin.apple_sdk.frameworks) Security;
1309713097 };
1309813098
13099- russ = callPackage ../applications/networking/feedreaders/russ { };
13100-
1310113099 tunnelto = callPackage ../tools/networking/tunnelto {
1310213100 inherit (darwin.apple_sdk.frameworks) Security;
1310313101 };
You can’t perform that action at this time.
0 commit comments