https://github.com/obsidiansystems/nixpkgs-maxine
personal nixpkgs repository
https://github.com/obsidiansystems/nixpkgs-maxine
Last synced: 6 months ago
JSON representation
personal nixpkgs repository
- Host: GitHub
- URL: https://github.com/obsidiansystems/nixpkgs-maxine
- Owner: obsidiansystems
- License: mit
- Created: 2021-02-19T21:19:52.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-02-19T21:40:35.000Z (almost 5 years ago)
- Last Synced: 2025-05-29T10:15:04.889Z (7 months ago)
- Language: Nix
- Homepage:
- Size: 30.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# nixpkgs-maxine
My personal [nixpkgs][nixpkgs] repository.
## Usage
### Adding a channel
```bash
$ nix-channel --add
https://github.com/maxeaubrey/nixpkgs-maxine/archive/main.tar.gz
nixpkgs-maxine
$ nix-channel --update nixpkgs-maxine
```
### Using Packages
```nix
{ config, pkgs, ... }:
let
maxine = import { };
in
{
environment.systemPackages = [ maxine.packageName ];
}
```
### In a `shell.nix`
```nix
{ pkgs ? import {} }:
with pkgs;
let
maxine = import (builtins.fetchTarball
https://github.com/maxeaubrey/nixpkgs-maxine/archive/main.tar.gz) {};
in
mkShell {
buildInputs = [
go
perl
maxine.qcma
];
}
```
[nixpkgs]: https://github.com/nixos/nixpkgs