Commit Graph

23854 Commits

Author SHA1 Message Date
Tristan Ross
02583b3274
inochi-session: 0.8.4 -> 0.8.7, fix aarch64-linux 2024-10-01 09:40:52 -07:00
Julien Malka
350888a27c
inochi2d: add libGL to LD_LIBRARY_PATH (#345579) 2024-10-01 08:31:42 +02:00
seth
328e517888
insulator2: use cargo-tauri.hook & yarnConfigHook 2024-09-30 20:13:15 -04:00
h7x4
423a94c8e6
ulauncher: add mainProgram (#344848) 2024-09-30 23:14:09 +02:00
Julien Malka
6cbf5ca061
inochi2d: add libGL to LD_LIBRARY_PATH 2024-09-30 21:06:50 +02:00
Martin Weinelt
27b4e638c0
treewide: replace passthru.optional-dependencies with optional-dependencies (#345232) 2024-09-30 15:41:25 +02:00
Nick Cao
e2aaf43f56
mob: 5.2.0 -> 5.3.1 (#345413) 2024-09-30 09:19:06 -04:00
Masum Reza
34787e7ea7
gallery-dl: 1.27.4 -> 1.27.5 (#345064) 2024-09-30 18:10:40 +05:30
Sandro
a968fa0376
veracrypt: 1.26.7 -> 1.26.15 (#344488) 2024-09-30 13:43:57 +02:00
Robert Schütz
543781083a treewide: replace passthru.optional-dependencies with optional-dependencies 2024-09-29 20:37:23 -07:00
R. Ryantm
65a629f037 mob: 5.2.0 -> 5.3.1 2024-09-30 03:21:06 +00:00
Fabián Heredia Montiel
fe370c252d
swi-prolog: rename from swiProlog, 9.2.6 -> 9.2.7, fix extraPacks (#340314) 2024-09-29 18:06:36 -06:00
Pol Dellaiera
2cf47d66b7
mission-center: 0.5.2 -> 0.6.0 (#345332) 2024-09-29 20:48:55 +02:00
Doron Behar
4fcd6b86ee
nixos/tzupdate: make it actually work (#343748) 2024-09-29 12:56:06 +03:00
Gaetan Lepage
b04f975f99 mission-center: move to pkgs/by-name 2024-09-29 10:38:56 +02:00
DontEatOreo
c7ad3a7619
gallery-dl: 1.27.4 -> 1.27.5
Changelog: https://github.com/mikf/gallery-dl/releases/tag/v1.27.5
Diff: https://github.com/mikf/gallery-dl/compare/v1.27.4...v1.27.5
2024-09-28 12:57:58 +03:00
novenary
94324a6d3c zathuraPkgs: drop pkgs from callPackage input 2024-09-28 12:11:53 +03:00
novenary
3dc8993b21 zathuraPkgs: move default plugins into wrapper 2024-09-28 12:10:31 +03:00
novenary
a0f64a2e5f zathuraPkgs: turn into scope 2024-09-28 12:10:29 +03:00
Mirko Lenz
6358d98704 ulauncher: add mainProgram 2024-09-27 11:18:18 +02:00
Weijia Wang
11779ac87e
system76-keyboard-configurator: 1.3.10 -> 1.3.12 (#341490) 2024-09-26 23:16:59 +02:00
Weijia Wang
6c1f988054
fluidd: 1.30.3 -> 1.30.4 (#341756) 2024-09-26 23:13:29 +02:00
K900
b964291466
{buildFHSEnvBubblewrap,buildFHSEnvChroot}: add nativeBuildInputs (#344516) 2024-09-26 08:38:07 +03:00
Dmitry Kalinkin
2af19cfb6a
blender: 4.2.1 -> 4.2.2 (#344451) 2024-09-25 18:05:23 -04:00
Artturin
4cb379f4d7 treewide: use nativeBuildInputs in appimage builder derivations 2024-09-25 23:01:28 +03:00
Ryan Omasta
051f75f1a9
veracrypt: 1.26.7 -> 1.26.14, move to pkgs/by-name 2024-09-25 11:38:22 -06:00
Andrew Marshall
8b2ec9bfdd blender: 4.2.1 -> 4.2.2
- Assets repo is unchanged.
2024-09-25 09:06:55 -04:00
Andrew Marshall
c107f15682 blender: use tag as rev for assets repo
The actual commit is the same.
2024-09-25 09:03:25 -04:00
OTABI Tomoya
613c9081f7
pe-bear: 0.6.7.3 -> 0.7.0 (#341953) 2024-09-25 12:06:47 +09:00
David McFarland
876e81c09d ArchiSteamFarm: restore/build for current runtime only 2024-09-24 20:43:23 -03:00
Artturin
63fa53d97c treewide: reformat files which need reformatting after
`treewide: replace stdenv.is with stdenv.hostPlatform.is`
2024-09-25 00:04:39 +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
Cabia Rangris
4b56eb0032
klipperscreen: 0.4.3 -> 0.4.4 (#343983) 2024-09-24 09:48:58 +04:00
Nikolay Korotkiy
d81fd7bf25
gpxsee: 13.24 -> 13.26 (#343903) 2024-09-23 20:07:42 +04:00
Saturn745
86a570fd2e klipperscreen: 0.4.3 -> 0.4.4
Update repo owner field
2024-09-23 08:10:48 -07:00
Aleksana
5f053ee054
klayout: 0.28.12 -> 0.29.6 (#332860) 2024-09-23 23:06:43 +08:00
Nikolay Korotkiy
f6d6fcd7dc
gpxsee: remove qt5compat from buildInputs 2024-09-23 18:14:45 +04:00
Sandro
64b3130c25
onboard: remove unused nose dependency (#343785) 2024-09-23 11:45:29 +02:00
R. Ryantm
d533a821bc gpxsee: 13.24 -> 13.26 2024-09-23 07:18:32 +00:00
Emily
c782781566 onboard: remove unused nose dependency
These tests have never been enabled since the package was added in
2017. It should be possible to get them running with pytest, but I
gave up after a few minutes.
2024-09-22 20:00:41 +01:00
R. Ryantm
a7bee48d0b lunatask: 2.0.4 -> 2.0.9 2024-09-22 08:49:36 +00:00
R. Ryantm
aa1433bbe5 organicmaps: 2024.08.16-5 -> 2024.09.08-7 2024-09-21 16:13:50 +00:00
Nick Cao
5e308344a1
mob: 5.1.1 -> 5.2.0 (#343386) 2024-09-21 09:22:21 -04:00
R. Ryantm
f8066873a6 mob: 5.1.1 -> 5.2.0 2024-09-21 00:02:28 +00:00
Nick Cao
c3c2953640
nwg-displays: 0.3.20 -> 0.3.21 (#343239) 2024-09-20 17:04:16 -04:00
R. Ryantm
1bb415810e nwg-displays: 0.3.20 -> 0.3.21 2024-09-20 11:04:55 +00:00
Aleksana
5c1ee3318d
tuba: 0.8.3 -> 0.8.4 (#343161) 2024-09-20 15:42:16 +08:00
R. Ryantm
6704c2576e tuba: 0.8.3 -> 0.8.4 2024-09-20 01:52:28 +00:00
Artturin
bad80fb105
koreader: add armv7l support (#343116) 2024-09-20 03:52:28 +03:00
Sandro
e73fd4a526
ArchiSteamFarm: 6.0.4.4 -> 6.0.6.4 (#339026) 2024-09-20 00:27:55 +02:00