Ada

Results 72 issues of Ada

It would be great to add Nushell tools for system activation scripts! :)

As it stands, it seems that Slipstream doesn't do this, as seen from a bit of defective code I was working on earlier: ``` java.lang.IllegalArgumentException: Unrecognized mod tag (/wrapper/findNa me(START_GAME_EVENT)/text)....

I decided to host my mod on Github as a release, and found out that Github throws a hissy fit when you try to upload it as a `.ftl`. I...

### In a few words, describe your idea Package as a Nix flake ### More information By packaging this as a nix flake, better control and integration of dependencies should...

It's become somewhat popular to include JSON output as an option, to make it easier to combine multiple utilities reliably. Examples include the `iproute` utilities (e.g., `ip --json addr`) and...

In Discord, and a number of other VOIP apps, there is a feature that allows the user to cap minimum volume at an arbitrary threshold. If dB are beneath this...

feature-request
stale

For example, when I do `package.override { nativeMessagingHosts [ pkgs.tridactyl-native ] }`, the tridactyl extension still can't find its native messaging host. For drop-in compatibility with the nixpkgs version of...

Trying to port circuitjs1 to nix is not working. The build process reports a missing dependency: ``` > nix run error: builder for '/nix/store/jj93snq27rw8yjbn0sp6id40nwx127xv-circuitjs1-0.9.3.drv' failed with exit code 1; last...

### What problem are you trying to solve? In Discord, and a number of other VOIP apps, there is a feature that allows the user to cap minimum volume at...

feature-request

Steps to reproduce: 1) Downloads [words.txt](https://gist.githubusercontent.com/crabdancing/1c199d05035dfa493634b901e0f4597b/raw/63be2b3872d59aa053fd4205fd41cf4e3b5b023b/words.txt) 2) ```rs fn main() { let mut t = TrieBuilder::new(); for word in std::fs::read_to_string("words.txt") .unwrap() .split_whitespace() { if !word.trim().is_empty() { t.push(word); } } let...