-
-
Notifications
You must be signed in to change notification settings - Fork 14.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ani-cli: 4.8 -> 4.9 #366140
ani-cli: 4.8 -> 4.9 #366140
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Commit message should be ani-cli: 4.8 -> 4.9
{ | ||
fetchFromGitHub, | ||
makeWrapper, | ||
stdenvNoCC, | ||
lib, | ||
gnugrep, | ||
gnused, | ||
curl, | ||
catt, | ||
syncplay, | ||
ffmpeg, | ||
fzf, | ||
aria2, | ||
withMpv ? true, | ||
mpv, | ||
withVlc ? false, | ||
vlc, | ||
withIina ? false, | ||
iina, | ||
chromecastSupport ? false, | ||
syncSupport ? false, | ||
{ fetchFromGitHub | ||
, makeWrapper | ||
, stdenvNoCC | ||
, lib | ||
, gnugrep | ||
, gnused | ||
, curl | ||
, catt | ||
, syncplay | ||
, ffmpeg | ||
, fzf | ||
, aria2 | ||
, withMpv ? true, mpv | ||
, withVlc ? false, vlc | ||
, withIina ? false, iina | ||
, chromecastSupport ? false | ||
, syncSupport ? false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please remove the unnecessary formatting changes
let | ||
player = [ ] ++ lib.optional withMpv mpv ++ lib.optional withVlc vlc ++ lib.optional withIina iina; | ||
in | ||
[ | ||
gnugrep | ||
gnused | ||
curl | ||
fzf | ||
ffmpeg | ||
aria2 | ||
] | ||
++ player | ||
++ lib.optional chromecastSupport catt | ||
++ lib.optional syncSupport syncplay; | ||
let player = [] | ||
++ lib.optional withMpv mpv | ||
++ lib.optional withVlc vlc | ||
++ lib.optional withIina iina; | ||
in [ gnugrep gnused curl fzf ffmpeg aria2 ] | ||
++ player | ||
++ lib.optional chromecastSupport catt | ||
++ lib.optional syncSupport syncplay; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If a formatter is used, make sure that you're using nixfmt-rfc-style
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Okay will do that in future! 👍️
Co-authored-by: Donovan Glover <[email protected]>
I Have made the necessary changes! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
24.05 is deprecated and ani-cli is already 4.9 in 24.11, so I think this PR should be closed
Co-authored-by: Donovan Glover <[email protected]>
Oh... |
You can see the deprecated label on https://search.nixos.org/ and https://status.nixos.org/ For contributing to nixpkgs, it's ideal to target the |
Adding support for 24.05
Tests: Ran it multiple times and is already present in NisOS 24.11
Package Information
Changes: Minor changes so Latest version works in 24.05 stable
Things done
nix.conf
? (See Nix manual)sandbox = relaxed
sandbox = true
nix-shell -p nixpkgs-review --run "nixpkgs-review rev HEAD"
. Note: all changes have to be committed, also see nixpkgs-review usage./result/bin/
)Maintainer ping:
@skykanin