13 Commits

Author SHA1 Message Date
github-actions[bot]
f3cb9b971a flake: update inputs
Flake lock file updates:

• Updated input 'nixpkgs':
    'github:NixOS/nixpkgs/5d6bdbddb4695a62f0d00a3620b37a15275a5093' (2025-12-11)
  → 'github:NixOS/nixpkgs/7d853e518814cca2a657b72eeba67ae20ebf7059' (2025-12-19)
2025-12-22 06:52:18 +00:00
baca5953e3 betanin: update gapps hook
Some checks failed
CI / checks (nur) (push) Successful in 3m47s
CI / build-and-update (xeals, xeals) (push) Failing after 3m1s
Update flake inputs / update-flake (push) Failing after 2m40s
2025-12-13 16:11:50 +11:00
984919528a flake: update inputs 2025-12-13 16:11:44 +11:00
f7e982ac78 spotify-ripper: remove alac support
All checks were successful
CI / checks (nur) (push) Successful in 3m49s
CI / build-and-update (xeals, xeals) (push) Successful in 3m26s
libav has been removed from nixpkgs
2025-12-13 12:18:21 +11:00
f0f3f19c21 docs: add CI badge
Some checks failed
CI / checks (nur) (push) Successful in 3m41s
CI / build-and-update (xeals, xeals) (push) Successful in 21m56s
Update flake inputs / update-flake (push) Failing after 2m45s
2025-08-31 10:36:55 +10:00
f05330dd60 betanin: fix missing gio for apprise
Some checks failed
CI / build-and-update (xeals, xeals) (push) Has been cancelled
CI / checks (nur) (push) Has been cancelled
2025-08-31 10:31:16 +10:00
1f4adea38e psst: remove useFetchCargoVendor 2025-08-31 09:44:26 +10:00
8fe36cfddc flake: update inputs 2025-08-31 09:37:04 +10:00
66fe96f8ce py-sonic: force setuptools build
Some checks failed
CI / checks (nur) (push) Successful in 3m40s
CI / build-and-update (xeals, xeals) (push) Successful in 23m2s
Update flake inputs / update-flake (push) Failing after 14m59s
2025-07-19 16:26:07 +10:00
ac27bd0bec amdgpu-fan: force setuptools build
Some checks failed
CI / checks (nur) (push) Successful in 3m42s
CI / build-and-update (xeals, xeals) (push) Failing after 3m22s
2025-07-19 16:14:58 +10:00
6df2a1a659 spotify-ripper: force setuptools build 2025-07-19 16:14:58 +10:00
5a6dd50718 mopidy-subidy: force setuptools build 2025-07-19 16:14:58 +10:00
67d062e9b0 flake: update inputs 2025-07-19 16:14:58 +10:00
8 changed files with 18 additions and 9 deletions

View File

@@ -2,7 +2,9 @@
**My personal [NUR](https://github.com/nix-community/NUR) repository**
[CI](https://git.xeals.me/xeals/nur-packages/actions) [![Cachix Cache](https://img.shields.io/badge/cachix-xeals-blue.svg)](https://xeals.cachix.org)
[![Gitea Action](https://git.xeal.me/xeals/nur-packages/actions/workflows/build.yml/badge.svg)](https://git.xeals.me/xeals/nur-packages/actions)
[![Cachix Cache](https://img.shields.io/badge/cachix-xeals-blue.svg)](https://xeals.cachix.org)
## Using

6
flake.lock generated
View File

@@ -20,11 +20,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1741865919,
"narHash": "sha256-4thdbnP6dlbdq+qZWTsm4ffAwoS8Tiq1YResB+RP6WE=",
"lastModified": 1766125104,
"narHash": "sha256-l/YGrEpLromL4viUo5GmFH3K5M1j0Mb9O+LiaeCPWEM=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "573c650e8a14b2faa0041645ab18aed7e60f0c9a",
"rev": "7d853e518814cca2a657b72eeba67ae20ebf7059",
"type": "github"
},
"original": {

View File

@@ -18,6 +18,8 @@ python3Packages.buildPythonApplication rec {
propagatedBuildInputs = [ mopidy python3Packages.py-sonic ];
format = "setuptools";
doCheck = false;
meta = with lib; {

View File

@@ -20,6 +20,8 @@ python3Packages.buildPythonApplication rec {
pyyaml
];
format = "setuptools";
patchPhase = ''
substituteInPlace setup.py \
--replace PROJECTVERSION "${version}"

View File

@@ -3,6 +3,7 @@
, fetchFromGitHub
, python3
, beets
, wrapGAppsHook3
}:
let
@@ -46,6 +47,9 @@ python3.pkgs.buildPythonApplication {
sed -i 's/Flask <3.0.0/Flask/' pyproject.toml
'';
# required for apprise
nativeBuildInputs = [ wrapGAppsHook3 ];
build-system = with python3.pkgs; [ setuptools ];
dependencies = (with python3.pkgs; [

View File

@@ -31,7 +31,6 @@ rustPlatform.buildRustPackage rec {
hash = "sha256-ZKhHN0ruLb6ZVKkrKv/YawRsVop6SP1QF/nrtkmA8P8=";
fetchSubmodules = true;
};
useFetchCargoVendor = true;
cargoHash = "sha256-my15AXG9LLmdqZLqXdeZ81VLv+GbSMgNtuFAlYTEUvQ=";
nativeBuildInputs = [ pkg-config ]

View File

@@ -6,8 +6,6 @@
, aacSupport ? false
, faac
, alacSupport ? false
, libav
, flacSupport ? false
, flac
, m4aSupport ? false
@@ -20,7 +18,6 @@
}:
assert aacSupport -> faac.meta.available;
assert alacSupport -> libav.meta.available;
assert flacSupport -> flac.meta.available;
assert m4aSupport || mp4Support -> fdk-aac-encoder.meta.available;
assert oggSupport -> vorbis-tools.meta.available;
@@ -48,13 +45,14 @@ python3Packages.buildPythonApplication rec {
]) ++ [
lame
(if flacSupport then flac else null)
(if alacSupport then libav else null)
(if aacSupport then faac else null)
(if (m4aSupport || mp4Support) then fdk-aac-encoder else null)
(if oggSupport then vorbis-tools else null)
(if opusSupport then opusTools else null)
];
format = "setuptools";
# Remove impure executables.
patches = [ ./fix-setup.patch ];

View File

@@ -12,6 +12,8 @@ buildPythonPackage rec {
sha256 = "0wh2phg8h02a6vlpqd0widd6g8ng142vzmk8hpyx0bnwn2i45sjc";
};
format = "setuptools";
doCheck = false;
meta = with lib; {