8 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
5 changed files with 10 additions and 9 deletions

View File

@@ -2,7 +2,9 @@
**My personal [NUR](https://github.com/nix-community/NUR) repository** **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 ## Using

6
flake.lock generated
View File

@@ -20,11 +20,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1752841793, "lastModified": 1766125104,
"narHash": "sha256-pGvcN/yiJ4e3/hgvTwkyZvl6c3HuLLCY/hjEzDuQB54=", "narHash": "sha256-l/YGrEpLromL4viUo5GmFH3K5M1j0Mb9O+LiaeCPWEM=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "8131c0ea9df6293a247be743a387ff725e464db7", "rev": "7d853e518814cca2a657b72eeba67ae20ebf7059",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

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

View File

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

View File

@@ -6,8 +6,6 @@
, aacSupport ? false , aacSupport ? false
, faac , faac
, alacSupport ? false
, libav
, flacSupport ? false , flacSupport ? false
, flac , flac
, m4aSupport ? false , m4aSupport ? false
@@ -20,7 +18,6 @@
}: }:
assert aacSupport -> faac.meta.available; assert aacSupport -> faac.meta.available;
assert alacSupport -> libav.meta.available;
assert flacSupport -> flac.meta.available; assert flacSupport -> flac.meta.available;
assert m4aSupport || mp4Support -> fdk-aac-encoder.meta.available; assert m4aSupport || mp4Support -> fdk-aac-encoder.meta.available;
assert oggSupport -> vorbis-tools.meta.available; assert oggSupport -> vorbis-tools.meta.available;
@@ -48,7 +45,6 @@ python3Packages.buildPythonApplication rec {
]) ++ [ ]) ++ [
lame lame
(if flacSupport then flac else null) (if flacSupport then flac else null)
(if alacSupport then libav else null)
(if aacSupport then faac else null) (if aacSupport then faac else null)
(if (m4aSupport || mp4Support) then fdk-aac-encoder else null) (if (m4aSupport || mp4Support) then fdk-aac-encoder else null)
(if oggSupport then vorbis-tools else null) (if oggSupport then vorbis-tools else null)