Skip to content

Commit 4ba22a8

Browse files
russ: 0.4.0 -> 0.5.0, move to by-name (#349518)
2 parents b0fcc35 + 3581a16 commit 4ba22a8

File tree

3 files changed

+41
-39
lines changed

3 files changed

+41
-39
lines changed

pkgs/applications/networking/feedreaders/russ/default.nix

Lines changed: 0 additions & 37 deletions
This file was deleted.

pkgs/by-name/ru/russ/package.nix

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
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+
}

pkgs/top-level/all-packages.nix

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff 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
};

0 commit comments

Comments
 (0)