Commit Graph

13 Commits

Author SHA1 Message Date
seth
426246f849
spotifyd: 0.3.5-unstable-2024-09-05 -> 0.3.5-unstable-2024-10-21 2024-11-07 16:10:28 -05: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
eaec79b5bd spotifyd: 0.3.5-unstable-2024-08-13 -> 0.3.5-unstable-2024-09-05 2024-09-07 21:44:11 +00:00
seth
c27c804e4c spotifyd: 0.3.5-unstable-2024-07-10 -> 0.3.5-unstable-2024-08-13
Fixes building against Rust 1.80.0
2024-08-14 13:38:51 +02:00
seth
93a6079c14
spotifyd: only use dbus on linux 2024-07-15 12:46:35 -04:00
seth
b0df3a330f
spotifyd: enable withKeyring by default
This is a standard feature described in documentation and very useful in
configuring spotify declaratively without leaking secrets
2024-07-12 18:26:47 -04:00
seth
41e79c9e11
spotifyd: add withJack option
this allows using the rodiojack backend added in
https://github.com/Spotifyd/spotifyd/pull/1281
2024-07-12 18:24:40 -04:00
seth
fb033f0be1
spotifyd: 0.3.5-unstable-2024-02-18 -> 0.3.5-unstable-2024-07-10 2024-07-12 18:15:05 -04:00
seth
94a6fbf321
spotifyd: add version test 2024-07-12 18:15:05 -04:00
seth
13c5512f1e
spotifyd: add getchoo as maintainer 2024-07-12 18:15:05 -04:00
seth
b3cd2a1df2
spotifyd: modernize
Adds updateScript to help in maintenance
https://github.com/NixOS/nixpkgs/issues/208242
2024-07-12 18:15:05 -04:00
seth
c2ebccb950
spotifyd: format with nixfmt 2024-07-12 18:15:05 -04:00
seth
e932f90954
spotifyd: migrate to by-name 2024-07-12 18:15:04 -04:00