Commit Graph

136 Commits

Author SHA1 Message Date
Sandro
b2ab05c423
bleep: 0.0.7 -> 0.0.9 (#346909) 2024-11-12 18:32:50 +01:00
aleksana
571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00
Aleksana
a87d070ab0
blivet-gui: init at 2.5.0 (#276662) 2024-11-08 17:26:31 +08:00
Reno Dakota
52bf1163fa
treewide: use getLib when accessing clang / libclang / stdenv.cc.cc
In preparation to eliminate the lib output for the unwrapped clang, use
`lib.getLib` to access the `lib` output.
2024-11-07 10:27:41 +00:00
Vladimir Panteleev
052b26573d
blivet-gui: init at 2.5.0 2024-11-07 09:15:57 +00:00
Zhong Jianxin
339404456d blueutil: use the new apple-sdk 2024-10-31 21:47:41 +08:00
Aleksana
899e1450ec
blobdrop: init at 2.1 (#346632) 2024-10-28 23:22:45 +08:00
Kristian Nedrevold-Hansen
7aa21ca5d3 bleep: 0.0.7 -> 0.0.9 2024-10-28 15:17:12 +01:00
Felix Singer
2d88282897 bluespec: Move package definition into by-name structure
Signed-off-by: Felix Singer <felixsinger@posteo.net>
2024-10-21 13:31:41 -05:00
Ramses
887f9c9a99
blueprint-compiler: 0.12.0 -> 0.14.0 (#348481) 2024-10-20 18:23:49 +02:00
Donovan Glover
5a98d44c85 bluetui: init at 0.5.1 2024-10-16 22:34:37 +02:00
R. Ryantm
01a9ca4f12 blueprint-compiler: 0.12.0 -> 0.14.0 2024-10-14 07:28:41 +00:00
github-actions[bot]
b1bc4ea2b5
Merge master into staging-next 2024-10-09 00:14:24 +00:00
Benedikt Broich
679619e8a3
blueprint-compiler: move to by-name 2024-10-08 12:02:09 +02:00
TomaSajt
8d082b97ab
blobdrop: init at 2.1 2024-10-06 13:48:21 +02:00
github-actions[bot]
653bcc0ea9
Merge master into staging-next 2024-10-05 18:04:03 +00:00
R. Ryantm
a2362832c0 blockbench: 4.11.0 -> 4.11.1 2024-10-04 23:58:56 +00:00
Alyssa Ross
ac037f0b18
Merge remote-tracking branch 'origin/master' into staging-next
Conflicts:
	pkgs/development/compilers/llvm/common/default.nix
2024-09-29 20:10:12 +02:00
h7x4
8b62732138
bluemap: 3.21 -> 5.4 (#332245) 2024-09-29 14:05:29 +02:00
github-actions[bot]
8693fc15c4
Merge master into staging-next 2024-09-28 18:04:13 +00:00
Sandro
19f1f2ebca
blackmagic-desktop-video: 14.1a1 -> 14.2a1 (#342257) 2024-09-28 19:56:16 +02:00
K900
a9128ce2f2 Merge remote-tracking branch 'origin/master' into staging-next 2024-09-25 21:07:19 +03:00
nixpkgs-merge-bot[bot]
a0ceffbc23
blockbench: 4.10.4 -> 4.11.0 (#343835) 2024-09-25 09:13:57 +00:00
Peder Bergebakken Sundt
b0be237aa2
bloaty: 1.1-unstable-2023-11-06 -> 1.1-unstable-2024-09-23 (#343872) 2024-09-25 10:51:40 +02:00
Artturin
f0e657f3b1 Merge branch 'master' into staging-next 2024-09-25 06:05:01 +03: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
Mutsuha Asada
dc4a4b2ad0
bloaty: moved to by-name 2024-09-23 13:25:27 +09:00
R. Ryantm
0898171001 blockbench: 4.10.4 -> 4.11.0 2024-09-23 00:33:36 +00:00
h7x4
e9c2989220
bluemap: 5.3 -> 5.4 2024-09-21 14:47:06 +02:00
h7x4
32f34d13c2
bluemap: 3.21 -> 5.3 2024-09-21 14:47:04 +02:00
github-actions[bot]
73cf025711
Merge staging-next into staging 2024-09-17 12:05:50 +00:00
Alyssa Ross
3052d8e230 bluez: add patch for musl 1.2.5 2024-09-16 17:34:33 +02:00
Naxdy
a2f44f1625
blackmagic-desktop-video: 14.1a1 -> 14.2a1 2024-09-16 11:20:25 +02:00
Sergei Trofimovich
ae1991a95b blackmagic-desktop-video: use gcc, not gcc7
`gcc7` will soon be removed from `nixpkgs`. Switch the package to use a
default version of `gcc`.
2024-09-16 09:32:33 +01:00
Fabián Heredia Montiel
ae51a98646
bluez: 5.76 -> 5.78 (#341994) 2024-09-15 11:31:01 -06:00
github-actions[bot]
84a5c54b60
Merge staging-next into staging 2024-09-15 12:05:26 +00: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
Alyssa Ross
c4ba2c64b4
bluez: 5.76 -> 5.78
Fixes building for musl with GCC 14.

Closes: https://github.com/NixOS/nixpkgs/pull/334891
2024-09-15 09:48:16 +02:00
Alyssa Ross
478bc3b40c
bluez: python3.pkgs -> python3Packages
python3.pkgs does not splice properly.
2024-09-15 09:46:45 +02:00
Peder Bergebakken Sundt
eeb076b7ed
bluez: substitute --replace with --replace-fail (#337280) 2024-09-14 20:08:53 +02:00
Aleksana
ae4001484e
bleep: init at 0.0.7 (#321599) 2024-09-14 16:20:49 +08:00
Kristian Nedrevold-Hansen
0aded5b759 bleep: init at 0.0.7
Scala build tool bleep.
https://github.com/oyvindberg/bleep/releases/tag/v0.0.7
A fast modern build tool for Scala with a declarative configuration.
2024-09-12 09:27:43 +02:00
David McFarland
e6c700ed11 dotnetCorePackages.fetchNupkg: override avalonia.x11 to find native libs 2024-09-06 16:32:08 -03:00
David McFarland
9a0be2fd28 dotnetCorePackages.fetchNupkg: override skiasharp to find fontconfig 2024-09-06 16:05:19 -03:00
lelgenio
caa7a66dda blade-formatter: switch to yarnHooks 2024-09-04 11:15:47 -03:00
github-actions[bot]
59b57346d9
Merge master into staging-next 2024-08-28 18:04:19 +00:00
TomaSajt
4de880ad6d
blockbench: use electron.dist 2024-08-27 21:37:14 +02:00
github-actions[bot]
132f2322d0
Merge master into staging-next 2024-08-26 12:05:25 +00:00
Masum Reza
3e7dfcf6e2
Merge pull request #336019 from TomaSajt/blastem
blastem 0.6.2-unstable-2024-03-31 -> 0.6.2-unstable-2024-08-14
2024-08-26 11:44:49 +05:30
github-actions[bot]
d6ec3d9fd7
Merge master into staging-next 2024-08-26 00:13:15 +00:00