https://github.com/tulilirockz/apple-pkl-flake
Unofficial nix packages for apple PKL
https://github.com/tulilirockz/apple-pkl-flake
apple-pkl linux macos nix nix-darwin nixos nixpkgs pkl
Last synced: 5 months ago
JSON representation
Unofficial nix packages for apple PKL
- Host: GitHub
- URL: https://github.com/tulilirockz/apple-pkl-flake
- Owner: tulilirockz
- License: bsd-3-clause
- Created: 2024-05-12T01:21:35.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-12T01:22:16.000Z (over 1 year ago)
- Last Synced: 2025-06-10T01:57:28.322Z (5 months ago)
- Topics: apple-pkl, linux, macos, nix, nix-darwin, nixos, nixpkgs, pkl
- Language: Nix
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Apple PKL flake
Nix packages for Apple PKL, since they arent yet pakaged on Nixpkgs.
To include them on your flake, import this repo onto it
```nix
{
inputs = {
# Assuming you already have a nixpkgs version imported
apple-pkl-flake = {
url = "github:tulilirockz/apple-pkl-flake";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = {
# Anything here, then `inputs.apple-pkl-flake.packages.${pkgs.system}.pkl or jpkl.`
};
}
```