39dd111b44
Build and populate cache / tests (<YOUR_CACHIX_NAME>, nixpkgs=https://github.com/NixOS/nixpkgs/archive/refs/heads/nixos-25.05.tar.gz, <YOUR_REPO_NAME>) (push) Successful in 3m25s
Build and populate cache / tests (<YOUR_CACHIX_NAME>, nixpkgs=https://github.com/NixOS/nixpkgs/archive/refs/heads/nixos-unstable.tar.gz, <YOUR_REPO_NAME>) (push) Successful in 2m51s
Build and populate cache / tests (<YOUR_CACHIX_NAME>, nixpkgs=https://github.com/NixOS/nixpkgs/archive/refs/heads/nixpkgs-unstable.tar.gz, <YOUR_REPO_NAME>) (push) Successful in 2m56s
48 lines
993 B
Markdown
48 lines
993 B
Markdown
# nur-packages
|
||
|
||
Personal [NUR](https://github.com/nix-community/NUR) repository.
|
||
|
||
## Packages
|
||
|
||
- **librepods**: LibrePods Linux app (Qt6) — AirPods controls and battery monitoring.
|
||
- Upstream: `https://github.com/kavishdevar/librepods`
|
||
|
||
## Usage
|
||
|
||
See the official NUR installation docs: [NUR documentation – Installation](https://nur.nix-community.org/documentation/#installation).
|
||
|
||
### Usage (flakes)
|
||
|
||
If you want to use this repo directly as a flake input:
|
||
|
||
```nix
|
||
{
|
||
inputs = {
|
||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||
my-nur.url = "github:<YOUR_GITHUB_USER>/nur-packages";
|
||
};
|
||
|
||
outputs = { self, nixpkgs, my-nur, ... }:
|
||
let
|
||
system = "x86_64-linux";
|
||
pkgs = import nixpkgs {
|
||
inherit system;
|
||
overlays = [ my-nur.overlays.default ];
|
||
};
|
||
in
|
||
{
|
||
packages.${system}.default = pkgs.librepods;
|
||
};
|
||
}
|
||
```
|
||
|
||
### Usage (local build/test)
|
||
|
||
From this repository:
|
||
|
||
```bash
|
||
nix build .#librepods
|
||
./result/bin/librepods
|
||
```
|
||
|