https://github.com/hypervideo/portless-nix
Nix package for https://github.com/vercel-labs/portless
https://github.com/hypervideo/portless-nix
Last synced: 3 months ago
JSON representation
Nix package for https://github.com/vercel-labs/portless
- Host: GitHub
- URL: https://github.com/hypervideo/portless-nix
- Owner: hypervideo
- Created: 2026-02-24T18:02:07.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2026-03-22T06:22:49.000Z (3 months ago)
- Last Synced: 2026-04-04T00:56:12.243Z (3 months ago)
- Language: Shell
- Size: 17.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This repository contains a nix flake for [portless](https://github.com/vercel-labs/portless). You can install portless into your nix devshell with:
```nix
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
portless-nix.url = "github:hypervideo/portless-nix";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs {
inherit system;
overlays = [
(import portless-nix)
];
};
in
{
devShells.default = pkgs.mkShell {
packages = with pkgs; [
portless
];
};
}
);
}
```
This repository has a automatically running CI job that will update the `portless` package to the latest version on a regular basis.