crertel
196fbd43c2
lmstudio: 0.3.3 -> 0.3.4
2024-10-13 13:36:17 -05: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
Dean Eckert
37b51f0156
lmstudio: 0.3.2 -> 0.3.3
2024-10-01 22:21:35 +02: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
R. Ryantm
569d16da80
lms: 3.57.0 -> 3.58.0
2024-09-24 11:12:57 +00:00
Peder Bergebakken Sundt
8aa42ae0d9
treewide: remove CMAKE_BUILD_TYPE from cmakeFlags ( #336854 )
2024-09-19 22:32:31 +02:00
mksafavi
8b8a20d1b4
lms: 3.56.0 -> 3.57.0
2024-09-08 01:33:36 +03:30
Peder Bergebakken Sundt
61125ff851
lms: 3.51.1 -> 3.56.0 ( #337650 )
2024-09-05 10:52:02 -04:00
crertel
aaf697e9e7
lmstudio: 0.3.1 -> 0.3.2
2024-09-02 01:10:09 -05:00
mksafavi
045f692542
lms: 3.51.1 -> 3.56.0
2024-08-27 10:22:11 +03:30
Dean Eckert
9c67da2873
lmstudio: 0.2.31 -> 0.3.1
2024-08-25 22:33:10 +02:00
jopejoe1
2277260e75
lms: remove CMAKE_BUILD_TYPE from cmakeFlags
2024-08-23 19:09:31 +02:00
crertel
e574238af4
lmstudio: 0.2.27 -> 0.2.31
2024-08-03 19:59:12 -05:00
crertel
ea2ddc7f7e
lmstudio: adding crertel to maintainers
2024-08-03 19:55:35 -05:00
Sigmanificient
6dd44107ac
treewide: remove unused lib (and other) arguments
2024-07-26 11:18:09 +02:00
crertel
90714007e3
lmstudio: 0.2.25 -> 0.2.27
2024-07-03 01:12:37 -05:00
Dean Eckert
7712ff7afe
lmstudio: 0.2.24 -> 0.2.25
2024-06-16 22:41:02 +02:00
Dean Eckert
011d47ec63
lmstudio: disabled unsupported linux versions (AVX2 is required on linux)
2024-06-16 22:40:30 +02:00
Martín Cigorraga
8cf2914522
lmstudio: 0.2.22 -> 0.2.24
2024-05-28 15:06:01 -03:00
Martín Cigorraga
09fd818472
lmstudio: adding cig0 to maintainers
2024-05-28 15:06:01 -03:00
Martín Cigorraga
f847c10505
lmstudio: remove drupol from maintainers
2024-05-28 15:06:01 -03:00
Martino Fontana
6e465f4550
treewide: fix use of extraPkgs
in AppImages
...
Mostly removes unnecessary use of `extraPkgs = pkgs: appimageTools.defaultFhsEnvArgs.multiPkgs pkgs;`
This caused some packages to be listed twice.
Also, fix some styling, and accidental use of top-level packages (sometimes due to the `with;` keyword, e.g. on `beeper`).
Remove inclusions of `bash`, since `bashInteractive` is already present by default.
2024-05-13 20:35:07 +02:00
Aleksana
913204a9fd
Merge pull request #305308 from mksafavi/pkg/lms
...
lms: init at 3.51.1
2024-05-07 17:13:52 +08:00
Dean Eckert
90ee270cf5
lmstudio: enable aarch64-darwin build
2024-05-03 14:40:55 +02:00
Dean Eckert
143636c5ce
lmstudio: 0.2.20 -> 0.2.22
2024-05-03 14:33:24 +02:00
Dean Eckert
35c956668e
lmstudio: add new maintainer
2024-05-03 14:32:01 +02:00
mksafavi
3e72972a25
lms: init at 3.51.1
2024-05-01 03:59:11 +03:30
R. Ryantm
f8d9330277
lmstudio: 0.2.18 -> 0.2.20
2024-04-27 23:27:09 +00:00
Peder Bergebakken Sundt
985aa8174d
treewide: unbreak appimageTools.wrapType2 builds
...
`appimageTools.wrapType2` no longer creates a binary `$out/bin/${name}` if `pname` and `version` is provided.
Derivations that have worked around this behavior with a `mv $out/bin/{${name},${pname}}` broke as a result.
This should fix most instances.
contex: #271071
2024-04-24 15:26:52 +02:00
Pol Dellaiera
8a74441fc0
lmstudio: init at 0.2.18
2024-03-28 19:30:20 +01:00