Commit Graph

228 Commits

Author SHA1 Message Date
aftix
38ca8b8886 nushellPlugins.dbus: 0.12.0 -> 0.13.0
Diff: https://github.com/devyn/nu_plugin_dbus/compare/0.12.0...0.13.0
2024-11-15 16:39:41 -06:00
Joaquín Triñanes
42020ebcbb
nushellPlugins.units: 0.1.2 -> 0.1.3 2024-11-13 13:23:35 +01:00
Joaquín Triñanes
5729a02f59
nushell: 0.99.1 -> 0.100.0 2024-11-13 13:23:29 +01:00
Joaquín Triñanes
f421151c79
nushellPlugins.net: fix updateScript 2024-11-13 12:31:33 +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
happysalada
1cf05182d0 nushellPlugins.net: cargoHash fix 2024-10-26 09:28:53 -04:00
Vlad M.
013136ee99
nushellPlugins.skim: init at 0.7.0 (#350136) 2024-10-22 22:03:50 +03:00
Yt
d3503200cd
nushell: 0.99.0 -> 0.99.1 (#350114) 2024-10-21 05:19:51 -04:00
Joaquín Triñanes
a33965600a
nushellPlugins.net: consistent naming 2024-10-21 10:20:44 +02:00
Joaquín Triñanes
fa25edac5b
nushell: fix build on darwin 2024-10-21 10:20:43 +02:00
Joaquín Triñanes
9455dd1c9d
nushell: 0.99.0 -> 0.99.1 2024-10-21 10:20:43 +02:00
Aleksana
dc7219111b
nushellPlugins.query: fix homepage (#347295) 2024-10-21 13:10:02 +08:00
aftix
fbe78043e0 nushellPlugins.skim: init at 0.7.0 2024-10-20 23:18:54 -05:00
aftix
4522ebfc6a nushellPlugins.dbus: init at 0.12.0 2024-10-19 19:14:19 -05:00
Jordan Williams
8f9643ef65
nushell: 0.98.0 -> 0.99.0
changelog: https://www.nushell.sh/blog/2024-10-15-nushell_0_99_0.html
2024-10-16 07:55:58 -05:00
happysalada
482a6800ab nushellPlugins.net: 1.7.0 -> 1.8.0 2024-10-13 16:34:14 -04:00
Merlin Humml
d22ac6c35e
nushellPlugins.highlight: init at 1.3.1+0.98.0 2024-10-09 16:04:42 +02:00
Yt
27ff85bbd0
nushellPlugins.units: init at 0.1.2 (#347453) 2024-10-09 09:14:24 -04:00
Merlin Humml
3fb311b7f4
nushellPlugins.units: init at 0.1.2 2024-10-09 11:56:41 +02:00
Honnip
ca07e930b6
nushellPlugins.query: fix homepage 2024-10-09 10:51:07 +09:00
R. Ryantm
9d9eac3657 nu_scripts: 0-unstable-2024-09-26 -> 0-unstable-2024-10-03 2024-10-05 11:05:54 +00:00
R. Ryantm
8b7694db56 nu_scripts: 0-unstable-2024-09-11 -> 0-unstable-2024-09-26 2024-09-27 10:36:04 +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
1adept
1061e2e141 nushell: 0.97.1 -> 0.98.0
changelog: https://www.nushell.sh/blog/2024-09-17-nushell_0_98_0.html
2024-09-19 20:33:29 +02:00
1adept
06967a8406 nushell: remove update script
Just use the provided update scripts.
This is not needed
2024-09-19 16:56:35 +02:00
R. Ryantm
fe05a75ac7 nu_scripts: 0-unstable-2024-08-30 -> 0-unstable-2024-09-11 2024-09-16 03:57:14 +00:00
Stanisław Pitucha
9c4cbe00d8 nushellPlugins.net: 0-unstable-2024-04-05 -> 1.7.0 2024-09-11 23:03:49 +10:00
R. Ryantm
f787964a2e nu_scripts: 0-unstable-2024-07-03 -> 0-unstable-2024-08-30 2024-09-05 07:03:25 +00:00
1adept
e96e635226 nushell: 0.96.1 -> 0.97.1
Note from release note:
> "Note: this was going to be version 0.97.0, but that version had to be yanked due to a last minute bug. This is still the next major version, not a patch release."
2024-08-21 17:28:14 +02:00
1adept
99ac52261a nushell: update script
script to update nushell using `nix-update`

Then to update each plugin
- build the plugin as-is
- replacing the hash with the new one from the failed build
- building again

All updated files will be added in git and commited

The resulting commit is checked with `nixpkgs-review`
2024-08-21 17:28:14 +02:00
happysalada
df67de0747 nushellPlugins.query: fix build 2024-08-03 07:58:26 -04:00
1adept
f85e1e1d18 nushell: 0.96.0 -> 0.96.1 2024-07-30 15:42:25 +02:00
1adept
1b14769458 nushell: 0.95.0 -> 0.96.0
add missing dependencies to query-plugin
2024-07-27 14:36:46 +02:00
R. Ryantm
53e6c0d620 nu_scripts: 0-unstable-2024-06-29 -> 0-unstable-2024-07-03 2024-07-07 03:29:21 +00:00
R. Ryantm
9cfe06c080 nu_scripts: 0-unstable-2024-06-22 -> 0-unstable-2024-06-29 2024-06-29 22:33:40 +00:00
Eric Kim-Butler
9050404e91 nushell: 0.94.1 -> 0.95.0 2024-06-26 13:21:47 +02:00
R. Ryantm
51bef8c5a9 nu_scripts: 0-unstable-2024-06-16 -> 0-unstable-2024-06-22 2024-06-24 08:07:54 +00:00
R. Ryantm
e681a07830 nu_scripts: 0-unstable-2024-06-08 -> 0-unstable-2024-06-16 2024-06-17 10:19:31 +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
R. Ryantm
d716e1e267 nu_scripts: 0-unstable-2024-06-01 -> 0-unstable-2024-06-08 2024-06-09 04:38:28 +00:00
Joaquín Triñanes
73472e3d77
nu_plugin_net: Fix meta.mainProgram 2024-06-06 19:49:42 +02:00
Joaquín Triñanes
923ad862cd
nu_plugin_polars: init at 0.94.1 2024-06-06 19:49:42 +02:00
Lovis Rentsch
abf9d35cfb
nu_plugin_net: 1.4.0 -> 1.4.1
The plugins for nushell must be built with the same version as the
current shell, so I want to update it to use the current nushell version
that is in the 24.05 and unstable branches (0.93.0).
2024-06-04 18:50:56 +02:00
Weijia Wang
8bd9ff0f78
Merge pull request #315086 from r-ryantm/auto-update/nu_scripts
nu_scripts: 0-unstable-2024-05-19 -> 0-unstable-2024-06-01
2024-06-02 19:07:46 +02:00
Eric Kim-Butler
78ae8350dc nushell: 0.93.0 -> 0.94.1 2024-06-02 17:26:59 +02:00
R. Ryantm
bec6bcc79f nu_scripts: 0-unstable-2024-05-19 -> 0-unstable-2024-06-01 2024-06-01 21:16:05 +00:00
Joaquín Triñanes
5ff8d5cbe7
nushellPlugins: fix incorrect license 2024-05-31 08:55:59 +02:00
R. Ryantm
d87778fd7e nu_scripts: 0-unstable-2024-05-15 -> 0-unstable-2024-05-19 2024-05-21 05:12:24 +00:00
R. Ryantm
773835677b nu_scripts: 0-unstable-2024-05-08 -> 0-unstable-2024-05-15 2024-05-16 02:32:23 +00:00