mirror of
https://github.com/librephoenix/nixos-config
synced 2025-07-06 06:52:13 +05:30
Trimmed out some unnecessary packages
This commit is contained in:
parent
7f0daacd08
commit
b5358a1adf
7 changed files with 31 additions and 135 deletions
|
@ -1,34 +0,0 @@
|
|||
{ lib, fetchgit, pkgs, ... }:
|
||||
let
|
||||
rustPlatform = pkgs.makeRustPlatform {
|
||||
cargo = pkgs.rust-bin.stable.latest.minimal;
|
||||
rustc = pkgs.rust-bin.stable.latest.minimal;
|
||||
};
|
||||
in
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "russ";
|
||||
version = "unstable";
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://github.com/ckampfe/russ.git";
|
||||
rev = "1482bb1df13738fdd4ea1badf2146a9ed8e6656e";
|
||||
sha256 = "sha256-MvTMo2q/cQ/LQNdUV8SmHgGlA42kLl0i9mdcoAFV/I4=";
|
||||
};
|
||||
|
||||
cargoSha256 = "sha256-/r1Dp7eh2qVYRGINVdPq6e8c9U/R2AzVEy/g+j/GRPo=";
|
||||
|
||||
checkType = "debug";
|
||||
checkFlags = [
|
||||
# network required tests don't work when building with nix for some reason
|
||||
"--skip=rss::tests::it_fetches"
|
||||
"--skip=rss::tests::it_subscribes_to_a_feed"
|
||||
"--skip=rss::tests::refresh_feed_does_not_add_any_items_if_there_are_no_new_items"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A TUI RSS reader with vim-like controls and a local-first, offline-first focus ";
|
||||
homepage = "https://github.com/ckampfe/russ";
|
||||
license = licenses.agpl3Only;
|
||||
maintainers = [];
|
||||
};
|
||||
}
|
|
@ -1,28 +0,0 @@
|
|||
{ lib, pkgs, ... }:
|
||||
let
|
||||
rustPlatform = pkgs.makeRustPlatform {
|
||||
cargo = pkgs.rust-bin.stable.latest.minimal;
|
||||
rustc = pkgs.rust-bin.stable.latest.minimal;
|
||||
};
|
||||
in
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "ytsub";
|
||||
version = "0.4.0";
|
||||
|
||||
src = fetchTarball {
|
||||
url = "https://github.com/sarowish/ytsub/archive/refs/tags/v0.4.0.tar.gz";
|
||||
sha256 = "1124mf5r2507d2939833xkavy2vi2rbws67dkim4vwah376k3rlf";
|
||||
};
|
||||
|
||||
cargoSha256 = "sha256-pv4eKD2XgaDAJqSf3JzfnsayofmOSy4XRzZ8rkZrHAo=";
|
||||
|
||||
buildNoDefaultFeatures = true;
|
||||
buildFeatures = [ "bundled_sqlite" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A subscriptions only TUI Youtube client that uses the Invidious API";
|
||||
homepage = "https://github.com/sarowish/ytsub";
|
||||
license = licenses.gpl3Only;
|
||||
maintainers = [];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue