Tristan Ross
849581c25b
localsend: 1.15.4 -> 1.15.4-unstable-2024-09-25
2024-10-06 09:05:05 -07:00
nartsisss
bfff467c60
loco-cli: refactor meta
2024-10-06 13:26:20 +03:00
nartsisss
2fe851739f
loco-cli: 0.2.6 -> 0.2.9
2024-10-06 13:26:20 +03:00
h7x4
8f55b011e0
treewide: add meta.changelog ( #346488 )
...
* guix: add meta.changelog
* zile: add meta.changelog
* zoom: add meta.changelog
* zotify: add meta.changelog
* zpaqfranz: add meta.changelog
* zunit: add meta.changelog
* zxwing-cpp: add meta.changelog
* zxpy: add meta.changelog
* zydis: add meta.changelog
* zziplib: add meta.changelog
* j: add meta.changelog
* kyua: add meta.changelog
* json2ts: add meta.changelog
* igir: add meta.changelog
* ios-webkit-debug-proxy: add meta.changelog
* gpaste: add meta.changelog
* polkit_gnome: add meta.changelog
* papers: add meta.changelog
* libmsgraph: add meta.changelog
* quadrapassel: add meta.changelog
* gnome-nibbles: add meta.changelog
* decibels: add meta.changelog
* libgedit-amtk: add meta.changelog
* simple-scan: add meta.changelog
* gnome-klotski: add meta.changelog
* gnome-sound-recorder: add meta.changelog
* gnome-remote-desktop: add meta.changelog
* gnome-robots: add meta.changelog
* gnome-shell-extensions: add meta.changelog
* gnome-panel: add meta.changelog
* gnome-session: add meta.changelog
* gnome-keyring: add meta.changelog
* devhelp: add meta.changelog
* libgnome-keyring: add meta.changelog
* ghex: add meta.changelog
* gnome-connections: add meta.changelog
* lightsoff: add meta.changelog
* gnome-flashback: add meta.changelog
* livi: add meta.changelog
* mutter: add meta.changelog
* hitori: add meta.changelog
* gnome-initial-setup: add meta.changelog
* gnome-bluetooth: add meta.changelog
* gnome-shell: add meta.changelog
* gnome-sudoku: add meta.changelog
* ideamaker: add meta.changelog
* i2p: add meta.changelog
* lms: add meta.changelog
* adwaita-icon-theme: add meta.changelog
* gnome-applets: add meta.changelog
* flac123: add meta.changelog
* flaca: add meta.changelog
* flameshot: add meta.changelog
* flaresolverr: add meta.changelog
* a52dec: add meta.changelog
* hexbinhex: add meta.changelog
* dwl: add meta.changelog
* msolve: add meta.changelog
* jcli: add meta.changelog
* nmap: add meta.changelog
* nmapsi4: add meta.changelog
* labctl: add meta.changelog
* _1oom: add meta.changelog
* libipuz: add meta.changelog
* metacity: add meta.changelog
* sushi: add meta.changelog
* rygel: add meta.changelog
* zenity: add meta.changelog
* crosswords: add meta.changelog
* gnome-mahjongg: add meta.changelog
* alacarte: add meta.changelog
* loupe: add meta.changelog
* cheese: add meta.changelog
* atomix: add meta.changelog
* swell-foop: add meta.changelog
* alfis: add meta.changelog
* aperture: add meta.changelog
* atomic-swap: add meta.changelog
* besu: add meta.changelog
* bisq: add meta.changelog
* bitcoin-abc: add meta.changelog
* bitcoin-knots: add meta.changelog
* bitcd: add meta.changelog
* btcdeb: add meta.changelog
* btcpayserver: add meta.changelog
* 86box: add meta.changelog
* darling: add meta.changelog
* dosbox: add meta.changelog
* firebird-emu: add meta.changelog
* maiko: add meta.changelog
* accerciser: add meta.changelog
* adwaita-icon-theme-legacy: add meta.changelog
* dconf-editor: add meta.changelog
* eog: add meta.changelog
* evolution-data-server: add meta.changelog
* file-roller: add meta.changelog
* four-in-a-row: add meta.changelog
* gdm: add meta.changelog
* geary: add meta.changelog
* gitg: add meta.changelog
* gnome2048: add meta.changelog
* gnome-backgrounds: add meta.changelog
* gnome-text-editor: add meta.changelog
* gnome-tour: add meta.changelog
* gnome-user-share: add meta.changelog
* gxml: add meta.changelog
* tali: add meta.changelog
* totem: add meta.changelog
* mobile-broadband-provider-info: add meta.changelog
* avr: add meta.changelog
* brev-cli: add meta.changelog
* juce: add meta.changelog
* loc: add meta.changelog
* resholve: add meta.changelog
* rpiboot: add meta.changelog
* gerbera: add meta.changelog
* kdocker: add meta.changelog
* pmenu: add meta.changelog
* advancecomp: add meta.changelog
* adriconf: add meta.changelog
* interception-tools: add meta.changelog
* nabi: add meta.changelog
* gorilla-cli: add meta.changelog
* heygpt: add meta.changelog
* 6tunnel: add meta.changelog
* aria2: add meta.changelog
* logmein-hamachi: add meta.changelog
* maphosts: add meta.changelog
* qcal: add meta.changelog
* adreaper: add meta.changelog
* aflplusplus: add meta.changelog
* aide: add meta.changelog
* cameradar: add meta.changelog
* wpscan: add meta.changelog
* aha: add meta.changelog
* xcat: add meta.changelog
2024-10-04 22:35:12 +03:00
Nick Cao
5f8ebd28ed
logiops: 0.3.4 -> 0.3.5 ( #346065 )
2024-10-03 15:59:06 -04:00
Christian Kögler
a3b838bedd
local-ai: 2.20.1 -> 2.21.1
2024-10-03 07:48:55 +02:00
Christian Kögler
14f8e6c62c
local-ai: 2.19.4 -> 2.20.1 ( #336871 )
2024-10-03 07:47:27 +02:00
R. Ryantm
cdce415f99
logiops: 0.3.4 -> 0.3.5
2024-10-03 04:19:57 +00:00
Artturin
e0464e4788
treewide: replace stdenv.is
with stdenv.hostPlatform.is
...
In preparation for the deprecation of `stdenv.isX`.
These shorthands are not conducive to cross-compilation because they
hide the platforms.
Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way
One example of why this is bad and especially affects compiler packages
https://www.github.com/NixOS/nixpkgs/pull/343059
There are too many files to go through manually but a treewide should
get users thinking when they see a `hostPlatform.isX` in a place where it
doesn't make sense.
```
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is"
fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is"
```
2024-09-25 00:04:37 +03:00
Anderson Torres
f0e64ce16f
treewide: migrate packages maintained by AndersonTorres to by-name
...
Manual migration for the sake of by-name migration is no longer discouraged
since #340235 .
2024-09-16 14:26:47 -03:00
nicoo
2641d97cbf
pkgs/by-name: Convert hashes to SRI format
...
Reproduction script:
# Bulk rewrite
./maintainers/scripts/sha-to-sri.py pkgs/by-name
# Revert some packages which will need manual intervention
for n in amdvlk azure-cli cargo-profiler corefonts flatito fluxcd gist perf_data_converter protoc-gen-js solana-cli swt verible; do
git checkout -- "pkgs/by-name/${n:0:2}/${n}"
done
2024-09-15 11:24:31 +02:00
John Titor
dce85e24f8
louvre: add update script
...
cleanup
2024-09-12 10:04:46 +05:30
John Titor
6a65627a05
louvre: 2.2.0-1 -> 2.9.0-1
2024-09-12 10:02:44 +05:30
cheeseecake
b038196283
logseq: add maintainer cheesecake
2024-09-01 20:26:00 +08:00
github-actions[bot]
a0418f66a3
Merge master into staging-next
2024-08-28 06:04:54 +00:00
github-actions[bot]
903fa485a4
Merge master into staging-next
2024-08-27 18:04:19 +00:00
Matteo Pacini
419c70aa5a
loopwm: 1.0.0 -> 1.1.1
2024-08-27 17:31:10 +01:00
Sandro
078be5f645
loopwm: added updateScript ( #334081 )
2024-08-27 14:28:14 +02:00
Christian Kögler
e8f5d6f53f
local-ai: 2.19.4 -> 2.20.1
2024-08-23 23:09:45 +02:00
Christian Kögler
ec32504554
local-ai: format code
2024-08-23 23:06:08 +02:00
K900
5c68540f8b
Merge remote-tracking branch 'origin/staging-next' into staging
2024-08-22 13:20:38 +03:00
Matteo Pacini
5d5a33a8e3
loopwm: added updateScript
2024-08-22 08:15:07 +01:00
Weijia Wang
60809f5681
Merge pull request #336188 from pbsds/bump-localsend-1724194260
...
localsend: 1.15.0 -> 1.15.4
2024-08-21 20:56:04 +02:00
Peder Bergebakken Sundt
27d5b878ea
localsend: 1.15.0 -> 1.15.4
2024-08-21 00:58:53 +02:00
Peder Bergebakken Sundt
fcdecc256a
treewide: change ${pname}
to string literal ( #336172 )
...
* adwaita-icon-theme: change `${pname}` to string literal
* alp: change `${pname}` to string literal
* alsa-oss: change `${pname}` to string literal
* alsa-plugins: change `${pname}` to string literal
* alsa-ucm-conf: change `${pname}` to string literal
* alsa-utils: change `${pname}` to string literal
* anyrun: change `${pname}` to string literal
* assemblyscript: change `${pname}` to string literal
* audiobookshelf: change `${pname}` to string literal
* baobab: change `${pname}` to string literal
* braa: change `${pname}` to string literal
* brill: change `${pname}` to string literal
* centrifugo: change `${pname}` to string literal
* cheese: change `${pname}` to string literal
* cljfmt: change `${pname}` to string literal
* coppwr: change `${pname}` to string literal
* cosmic-edit: change `${pname}` to string literal
* cosmic-files: change `${pname}` to string literal
* cosmic-store: change `${pname}` to string literal
* cosmic-term: change `${pname}` to string literal
* crate2nix: change `${pname}` to string literal
* cups-kyocera-3500-4500: change `${pname}` to string literal
* dbqn: change `${pname}` to string literal
* dconf-editor: change `${pname}` to string literal
* devhelp: change `${pname}` to string literal
* dmarc-report-converter: change `${pname}` to string literal
* engage: change `${pname}` to string literal
* eog: change `${pname}` to string literal
* evolution-data-server-gtk4: change `${pname}` to string literal
* find-billy: change `${pname}` to string literal
* firefly-iii: change `${pname}` to string literal
* fuchsia-cursor: change `${pname}` to string literal
* geary: change `${pname}` to string literal
* ghex: change `${pname}` to string literal
* gitg: change `${pname}` to string literal
* glasskube: change `${pname}` to string literal
* gnome.gnome-autoar: change `${pname}` to string literal
* gnome.gnome-calculator: change `${pname}` to string literal
* gnome.gnome-calendar: change `${pname}` to string literal
* gnome.gnome-common: change `${pname}` to string literal
* gnome.gnome-dictionary: change `${pname}` to string literal
* gnome.gnome-disk-utility: change `${pname}` to string literal
* gnome.gnome-font-viewer: change `${pname}` to string literal
* gnome.gnome-keyring: change `${pname}` to string literal
* gnome.gnome-screenshot: change `${pname}` to string literal
* gnome.gnome-system-monitor: change `${pname}` to string literal
* gnome.seahorse: change `${pname}` to string literal
* gnome.simple-scan: change `${pname}` to string literal
* gnome.sushi: change `${pname}` to string literal
* gnome.totem: change `${pname}` to string literal
* gnome.yelp: change `${pname}` to string literal
* gnome.yelp-xsl: change `${pname}` to string literal
* gnucap-full: change `${pname}` to string literal
* goredo: change `${pname}` to string literal
* guile-semver: change `${pname}` to string literal
* halo: change `${pname}` to string literal
* intiface-central: change `${pname}` to string literal
* intune-portal: change `${pname}` to string literal
* iscc: change `${pname}` to string literal
* jetbrains-toolbox: change `${pname}` to string literal
* jnr-posix: change `${pname}` to string literal
* keymapp: change `${pname}` to string literal
* libation: change `${pname}` to string literal
* libeduvpn-common: change `${pname}` to string literal
* libmamba: change `${pname}` to string literal
* littlefs-fuse: change `${pname}` to string literal
* logseq: change `${pname}` to string literal
* lxgw-wenkai-tc: change `${pname}` to string literal
* microsoft-identity-broker: change `${pname}` to string literal
* minetest-mapserver: change `${pname}` to string literal
* msalsdk-dbusclient: change `${pname}` to string literal
* neverest: change `${pname}` to string literal
* nf-test: change `${pname}` to string literal
* numbat: change `${pname}` to string literal
* pdf2odt: change `${pname}` to string literal
* plemoljp: change `${pname}` to string literal
* plemoljp-hs: change `${pname}` to string literal
* plemoljp-nf: change `${pname}` to string literal
* pocket-updater-utility: change `${pname}` to string literal
* proto: change `${pname}` to string literal
* pw3270: change `${pname}` to string literal
* ratchet: change `${pname}` to string literal
* read-it-later: change `${pname}` to string literal
* redmine: change `${pname}` to string literal
* regina: change `${pname}` to string literal
* regripper: change `${pname}` to string literal
* revolt-desktop: change `${pname}` to string literal
* rs: change `${pname}` to string literal
* signaturepdf: change `${pname}` to string literal
* sonarlint-ls: change `${pname}` to string literal
* srgn: change `${pname}` to string literal
* stackit-cli: change `${pname}` to string literal
* substudy: change `${pname}` to string literal
* swayosd: change `${pname}` to string literal
* synthesia: change `${pname}` to string literal
* tarlz: change `${pname}` to string literal
* termcap: change `${pname}` to string literal
* tinycompress: change `${pname}` to string literal
* tracexec: change `${pname}` to string literal
* treefmt2: change `${pname}` to string literal
* udev-gothic: change `${pname}` to string literal
* udev-gothic-nf: change `${pname}` to string literal
* vvvvvv: change `${pname}` to string literal
* yggdrasil: change `${pname}` to string literal
* zsync: change `${pname}` to string literal
2024-08-20 15:56:55 -07:00
Christian Kögler
b854c51588
Merge pull request #330331 from ck3d/localai-2192
...
local-ai: 2.18.1 -> 2.19.4
2024-08-19 10:26:21 +02:00
Peder Bergebakken Sundt
7020a1d893
treewide: default.nix
-> package.nix
in pkgs/by-name
...
We need to remember to go over all the update scripts once the mass-by-name migration has happened
2024-08-18 18:09:17 +02:00
github-actions[bot]
0f820c1c5a
Merge staging-next into staging
2024-08-18 00:03:22 +00:00
Sandro
3bedd26586
Merge pull request #330146 from Sigmanificient/logdy
...
logdy: init at 0.13.0
2024-08-17 22:35:31 +02:00
Sigmanificient
aff037092f
logdy: init at 0.13.0
2024-08-17 21:20:59 +02:00
Someone
ccaaa9ca53
Merge pull request #318614 from wolfgangwalther/structured-attrs-setup-hooks
...
treewide: support structuredAttrs in setup hooks
2024-08-13 19:29:36 +00:00
kirillrdy
5b14f25672
Merge pull request #331824 from yzx9/logseq-drawin-support
...
logseq: add darwin support
2024-08-13 18:30:53 +10:00
Peder Bergebakken Sundt
71e658b73a
Merge pull request #333047 from Pandapip1/localsend-minor-reformat
...
localsend: remove a with lib
2024-08-11 22:19:11 +02:00
Christian Kögler
c875450f52
local-ai: 2.18.1 -> 2.19.4
2024-08-10 14:56:11 +02:00
Christian Kögler
c8fd4604a3
local-ai: Switch test to llama 3.1
2024-08-10 14:56:11 +02:00
Gavin John
3a6ef929de
localsend: remove a with lib
2024-08-07 18:43:59 +01:00
yzx9
437d3e574d
logseq: add darwin support
2024-08-06 10:40:12 +08:00
Wolfgang Walther
6bdfef9d2d
stdenv: generalize _accumFlagsArray to concatTo
...
Passing "flagsArray" as the first argument allows using this function
in a few more places.
2024-08-02 22:11:38 +02:00
Peder Bergebakken Sundt
a0396ab411
treewide: use src.name in sourceRoot
2024-08-02 14:56:50 +02:00
Jörg Thalheim
5356420466
treewide: remove unused with statements from maintainer lists
...
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
-e 's!with lib.maintainers; \[ *\];![ ];!' \
-e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00
Nydragon
dab6632ebe
lollypop: move to by-name
2024-07-17 22:22:04 +02:00
linsui
26b069decb
localsend: 1.14.0 -> 1.15.0
2024-07-16 20:49:09 +08:00
linsui
63425c530c
localsend: format
2024-07-16 20:27:22 +08:00
linsui
11f1030337
localsend: move to by-name
2024-07-16 20:27:22 +08:00
Aleksana
8536937b75
Merge pull request #327080 from Aleksanaa/fetchgit-sha256-fix
...
treewide: sha256 -> hash attribute for fetchgit
2024-07-14 20:56:04 +08:00
aleksana
592e3845c4
treewide: sha256 -> hash attribute for fetchgit
2024-07-14 19:10:08 +08:00
Sigmanificient
512e8afdb9
treewide: remove unused occurence of stdenv (and other) arguments
...
format (will squash)
2024-07-14 04:32:56 +02:00
Franz Pletz
39c58c75eb
Merge pull request #324987 from ck3d/localai-2181
...
local-ai: 2.17.1 -> 2.18.1
2024-07-09 16:05:51 +02:00
h7x4
7384b9abdc
treewide: set meta.changelog
2024-07-07 15:20:06 +02:00
Christian Kögler
e1f3b1a53c
local-ai: 2.17.1 -> 2.18.1
2024-07-06 09:58:44 +02:00
Christian Kögler
61131e976b
local-ai: fix libcuda.so stub
2024-07-03 20:14:35 +02:00
ckie
7d34b64eca
maintainers: remove ckie
...
well, we failed. we have not saved nix together[0], and today's show of
utter incompetence[1] has pushed me over the edge along with many others[2]
it's been good. a lot of PRs. a lot of endless reviews.
some new friends, some old friends converted :P
cya in the next world, cuties <3
[0] https://save-nix-together.org/
[1] https://discourse.nixos.org/t/nca-member-jonringer-joint-announcement/48231
[2] https://github.com/NixOS/nixpkgs/issues?q=label%3A%228.has%3A+maintainer-list+%28update%29%22+remove+in%3Atitle+created%3A%3C2024-07-10
2024-07-02 02:40:02 +02:00
Matthias Beyer
97271541c3
Merge pull request #322509 from r-ryantm/auto-update/louvre
...
louvre: 2.1.0-1 -> 2.2.0-1
2024-06-30 17:28:43 +02:00
Sandro
533a48e6ff
Merge pull request #321219 from matteo-pacini/loopwm
2024-06-27 12:44:02 +02:00
R. Ryantm
50e9b66a1c
louvre: 2.1.0-1 -> 2.2.0-1
2024-06-25 22:58:36 +00:00
Matteo Pacini
dbc9dcd311
loopwm: init at 1.0.0
2024-06-23 18:05:13 +01:00
Christian Kögler
9ad5d2dec8
local-ai: 2.16.0 -> 2.17.1
2024-06-22 17:39:54 +02:00
superherointj
8b7d6f8b0a
logseq: fix build, move to by-name
2024-06-20 08:50:23 -03:00
R. Ryantm
be62ed3eec
louvre: 2.0.0-1 -> 2.1.0-1
2024-06-18 22:57:21 +00:00
Christian Kögler
ed7c5230a7
local-ai: 2.15.0 -> 2.16.0
2024-06-15 22:15:55 +02:00
R. Ryantm
b5b35e4c04
louvre: 1.2.1-2 -> 2.0.0-1
2024-06-11 03:48:46 +00:00
Alexis Hildebrandt
755b915a15
treewide: Remove indefinite article from meta.description
...
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
| xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00
Alexis Hildebrandt
bf995e3641
treewide: Remove ending period from meta.description
...
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*".*\.";' pkgs \
| xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*)\.";/\1";/'
2024-06-09 23:04:51 +02:00
Sandro Jäckel
41452802cb
treewide: fix all obviously wrong mkEnableOptions
2024-06-03 13:20:32 +02:00
R. Ryantm
8b882f55a0
logiops: 0.3.3 -> 0.3.4
2024-05-28 04:09:23 +00:00
Christian Kögler
22bed56b80
local-ai: 2.14.0 -> 2.15.0
2024-05-09 20:10:53 +02:00
Christian Kögler
c3dcc669bc
local-ai: 2.13.0 -> 2.14.0
2024-05-06 07:46:03 +02:00
OPNA2608
883b6a8fff
louvain-community: unstable-2024-01-30 -> 0-unstable-2024-01-30
2024-05-04 19:44:26 +02:00
Weijia Wang
23cbc3c2b3
Merge branch 'master' into staging-next
2024-04-30 13:24:52 +02:00
Christian Kögler
729264e1d1
local-ai: 2.12.4 -> 2.13.0
2024-04-28 18:41:03 +02:00
Michael Evans
39de4902d1
lorem: 1.3 -> 1.4
2024-04-23 18:30:13 +02:00
Maxine Aubrey
272624cb6d
loupe: 46.1 → 46.2
...
https://gitlab.gnome.org/GNOME/loupe/-/compare/46.1...46.2
2024-04-22 21:11:28 +02:00
Maxine Aubrey
6bfc41b0c2
loupe: 46.0 → 46.1
...
https://gitlab.gnome.org/GNOME/loupe/-/compare/46.0...46.1
2024-04-22 21:11:26 +02:00
Maxine Aubrey
a520545bb5
loupe: 45.3 → 46.0
...
https://gitlab.gnome.org/GNOME/loupe/-/compare/45.3...46.0
Changelog-Reviewed-By: Maxine Aubrey <max@ine.dev>
2024-04-22 21:11:10 +02:00
R. Ryantm
7d1cfb83bb
local-ai: 2.12.3 -> 2.12.4
2024-04-14 15:19:43 +00:00
Christian Kögler
6d0d47e81d
Merge pull request #302907 from ck3d/localai-2121
...
local-ai: 2.11.0 -> 2.12.3
2024-04-12 12:48:47 +02:00
Weijia Wang
78751bf9fc
Merge pull request #302103 from r-ryantm/auto-update/loksh
...
loksh: 7.4 -> 7.5
2024-04-12 10:15:39 +02:00
Christian Kögler
0114be0584
local-ai: 2.11.0 -> 2.12.3
...
- acitvate with_stablediffusion and with_tts per default
- move tests to separate file
- add llama test
2024-04-11 12:06:13 +02:00
Someone
29bc928c6e
Merge pull request #302350 from ck3d/localai-config-cuda
...
local-ai: better defaults and smaller closure size
2024-04-07 21:12:36 +00:00
Christian Kögler
28358e396b
local-ai: use makeLibraryPath for LD_LIBRARY_PATH
2024-04-07 21:52:54 +02:00
Christian Kögler
c354244181
local-ai: reduce closure by using cuda_nvcc
2024-04-07 15:37:45 +02:00
Christian Kögler
951f4a1abe
local-ai: remove unused inputs and comments
2024-04-07 15:37:26 +02:00
Christian Kögler
673216d6eb
local-ai: use defaults from config and stdenv
2024-04-07 15:36:57 +02:00
Sebastian Rutofski
52d3267290
loco-cli: init at 0.2.6
2024-04-06 19:54:16 +02:00
R. Ryantm
cd95ef1083
loksh: 7.4 -> 7.5
2024-04-06 13:13:10 +00:00
Christian Kögler
683ab72943
local-ai: add whisper test
2024-04-01 17:07:41 +02:00
Christian Kögler
72450f071c
local-ai: fix missing libs for piper backend
2024-04-01 13:32:21 +02:00
Christian Kögler
68d8df822d
local-ai: 2.10.1 -> 2.11.0
2024-03-28 17:48:53 +01:00
Christian Kögler
5cd992bea0
local-ai: buildGoModules do not allow to use buildFlags
2024-03-24 08:09:16 +01:00
Christian Kögler
a8853c6b02
local-ai: reuse derivation ncnn for go-tiny-dream
2024-03-23 20:24:55 +01:00
Christian Kögler
3a14bff91f
local-ai: add feature flags for CPU extensions
2024-03-23 19:22:17 +01:00
Christian Kögler
808d9f9ffb
local-ai: use cmake to install grpc-server
2024-03-23 19:21:39 +01:00
Christian Kögler
d5f8aa51b9
local-ai: use cmake for whisper-cpp
2024-03-23 12:44:52 +01:00
Christian Kögler
cc364c7ac9
local-ai: Build go modules as separate package and fix tts
2024-03-22 17:55:11 +01:00
lassulus
d44b87d86f
Merge pull request #291647 from ck3d/localai-init
...
local-ai: init at 2.10.1
2024-03-22 17:07:54 +07:00
Christian Kögler
fe7b1a0628
local-ai: initial add 2.10.1
2024-03-20 18:36:17 +01:00
stuebinm
ff1a94e523
treewide: add meta.mainProgram to packages with a single binary
...
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00
Jon Seager
86849ab446
Merge pull request #289391 from Erethon/erethon-loramon
...
loramon: init at 0.9.7
2024-02-28 08:50:09 +00:00
Sandro
88ce13798f
Merge pull request #289701 from kylechui/feat/update-logiops
2024-02-24 00:26:41 +01:00
Kyle Chui
5533f8b718
logiops: 0.2.3 -> 0.3.3
...
feat: Add multiple version support.
refactor: Remove unnecessary code.
The `DBus` handling is already done via the changed patch file.
chore: Fix formatting.
refactor: Remove confusing comment.
refactor: Abide by `by-name` CI.
https://github.com/NixOS/nixpkgs/actions/runs/7968015723/job/21751618054?pr=289701
fix: Remove unnecessary CMake build flag.
Nixpkgs already always builds Release, so this is redundant.
2024-02-22 16:51:01 -08:00